X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;ds=sidebyside;f=passthrough.c;h=6d00593c7993853c4840bd0d7d9e53dab17984f1;hb=9adc87b63b1a6536019d5d7a236f85650dde2239;hp=cacc6b49e93f8730c5846dfdf6950bb06ecee45d;hpb=99a69b6850cc3f8d03ae08c24bc9b89d2c72260c;p=rrq%2Ffuse_xattrs.git diff --git a/passthrough.c b/passthrough.c index cacc6b4..6d00593 100644 --- a/passthrough.c +++ b/passthrough.c @@ -14,7 +14,12 @@ /* For pread()/pwrite()/utimensat() */ #define _XOPEN_SOURCE 700 -#include +#ifdef __APPLE__ + #include +#else + #include +#endif + #include #include #include @@ -24,6 +29,7 @@ #include "xattrs_config.h" #include "utils.h" +#include "stringmem.h" int xmp_getattr(const char *path, struct stat *stbuf) { int res; @@ -34,7 +40,7 @@ int xmp_getattr(const char *path, struct stat *stbuf) { char *_path = prepend_source_directory(path); res = lstat(_path, stbuf); - free(_path); + strfree(_path); if (res == -1) return -errno; @@ -50,7 +56,7 @@ int xmp_access(const char *path, int mask) { char *_path = prepend_source_directory(path); res = access(_path, mask); - free(_path); + strfree(_path); if (res == -1) return -errno; @@ -66,7 +72,7 @@ int xmp_readlink(const char *path, char *buf, size_t size) { char *_path = prepend_source_directory(path); res = readlink(_path, buf, size - 1); - free(_path); + strfree(_path); if (res == -1) return -errno; @@ -88,7 +94,7 @@ int xmp_readdir(const char *path, void *buf, fuse_fill_dir_t filler, } else { char *_path = prepend_source_directory(path); dp = opendir(_path); - free(_path); + strfree(_path); } if (dp == NULL) @@ -130,7 +136,7 @@ int xmp_mknod(const char *path, mode_t mode, dev_t rdev) { else res = mknod(_path, mode, rdev); - free(_path); + strfree(_path); if (res == -1) return -errno; @@ -145,7 +151,7 @@ int xmp_mkdir(const char *path, mode_t mode) { char *_path = prepend_source_directory(path); res = mkdir(_path, mode); - free(_path); + strfree(_path); if (res == -1) return -errno; @@ -163,7 +169,7 @@ int xmp_unlink(const char *path) { res = unlink(_path); if (res == -1) { - free(_path); + strfree(_path); return -errno; } @@ -173,8 +179,8 @@ int xmp_unlink(const char *path) { error_print("Error removing sidecar file: %s\n", sidecar_path); } } - free(sidecar_path); - free(_path); + strfree(sidecar_path); + strfree(_path); return 0; } @@ -188,7 +194,7 @@ int xmp_rmdir(const char *path) { char *_path = prepend_source_directory(path); res = rmdir(_path); - free(_path); + strfree(_path); if (res == -1) return -errno; @@ -206,7 +212,7 @@ int xmp_symlink(const char *from, const char *to) { char *_to = prepend_source_directory(to); res = symlink(from, _to); - free(_to); + strfree(_to); if (res == -1) return -errno; @@ -227,8 +233,8 @@ int xmp_rename(const char *from, const char *to) { res = rename(_from, _to); if (res == -1) { - free(_from); - free(_to); + strfree(_from); + strfree(_to); return -errno; } @@ -241,11 +247,11 @@ int xmp_rename(const char *from, const char *to) { error_print("Error renaming sidecar. from: %s to: %s\n", from_sidecar_path, to_sidecar_path); } } - free(from_sidecar_path); - free(to_sidecar_path); + strfree(from_sidecar_path); + strfree(to_sidecar_path); - free(_from); - free(_to); + strfree(_from); + strfree(_to); return 0; } @@ -262,8 +268,8 @@ int xmp_link(const char *from, const char *to) { char *_from = prepend_source_directory(from); char *_to = prepend_source_directory(to); res = link(_from, _to); - free(_from); - free(_to); + strfree(_from); + strfree(_to); if (res == -1) return -errno; @@ -279,7 +285,7 @@ int xmp_chmod(const char *path, mode_t mode) { char *_path = prepend_source_directory(path); res = chmod(_path, mode); - free(_path); + strfree(_path); if (res == -1) return -errno; @@ -295,7 +301,7 @@ int xmp_chown(const char *path, uid_t uid, gid_t gid) { char *_path = prepend_source_directory(path); res = lchown(_path, uid, gid); - free(_path); + strfree(_path); if (res == -1) return -errno; @@ -311,7 +317,7 @@ int xmp_truncate(const char *path, off_t size) { char *_path = prepend_source_directory(path); res = truncate(_path, size); - free(_path); + strfree(_path); if (res == -1) return -errno; @@ -320,20 +326,17 @@ int xmp_truncate(const char *path, off_t size) { } #ifdef HAVE_UTIMENSAT -int xmp_utimens(const char *path, const struct timespec ts[2], -struct fuse_file_info *fi) -{ +int xmp_utimens(const char *path, const struct timespec ts[2]) { if (xattrs_config.show_sidecar == 0 && filename_is_sidecar(path) == 1) { return -ENOENT; } - (void) fi; int res; char *_path = prepend_source_directory(path); /* don't use utime/utimes since they follow symlinks */ res = utimensat(0, _path, ts, AT_SYMLINK_NOFOLLOW); - free(_path); + strfree(_path); if (res == -1) return -errno; @@ -349,7 +352,7 @@ int xmp_open(const char *path, struct fuse_file_info *fi) { char *_path = prepend_source_directory(path); fd = open(_path, fi->flags); - free(_path); + strfree(_path); if (fd == -1) return -errno; @@ -396,7 +399,7 @@ int xmp_statfs(const char *path, struct statvfs *stbuf) { char *_path = prepend_source_directory(path); res = statvfs(_path, stbuf); - free(_path); + strfree(_path); if (res == -1) return -errno;