/* Copyright (c) 2016, Antonio SJ Musumeci Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include "fuse_open.hpp" #include "state.hpp" #include "config.hpp" #include "errno.hpp" #include "fileinfo.hpp" #include "fs_cow.hpp" #include "fs_fchmod.hpp" #include "fs_lchmod.hpp" #include "fs_open.hpp" #include "fs_open_fd.hpp" #include "fs_openat.hpp" #include "fs_path.hpp" #include "fs_stat.hpp" #include "fuse_passthrough.hpp" #include "procfs.hpp" #include "stat_util.hpp" #include "ugid.hpp" #include "fuse.h" #include #include #include static bool _rdonly(const int flags_) { return ((flags_ & O_ACCMODE) == O_RDONLY); } static int _lchmod_and_open_if_not_writable_and_empty(const fs::path &fullpath_, const int flags_) { int rv; struct stat st; rv = fs::lstat(fullpath_,&st); if(rv < 0) return -EACCES; if(StatUtil::writable(st)) return -EACCES; rv = fs::lchmod(fullpath_,(st.st_mode|S_IWUSR|S_IWGRP)); if(rv < 0) return -EACCES; rv = fs::open(fullpath_,flags_); if(rv < 0) return -EACCES; fs::fchmod(rv,st.st_mode); return rv; } static int _nfsopenhack(const fs::path &fullpath_, const int flags_, const NFSOpenHack nfsopenhack_) { switch(nfsopenhack_) { default: case NFSOpenHack::ENUM::OFF: return -EACCES; case NFSOpenHack::ENUM::GIT: if(::_rdonly(flags_)) return -EACCES; if(fullpath_.string().find("/.git/") == std::string::npos) return -EACCES; return ::_lchmod_and_open_if_not_writable_and_empty(fullpath_,flags_); case NFSOpenHack::ENUM::ALL: if(::_rdonly(flags_)) return -EACCES; return ::_lchmod_and_open_if_not_writable_and_empty(fullpath_,flags_); } } /* The kernel expects being able to issue read requests when running with writeback caching enabled so we must change O_WRONLY to O_RDWR. With writeback caching enabled the kernel handles O_APPEND. Could be an issue if the underlying file changes out of band but that is true of any caching. */ static void _tweak_flags_writeback_cache(int *flags_) { if((*flags_ & O_ACCMODE) == O_WRONLY) *flags_ = ((*flags_ & ~O_ACCMODE) | O_RDWR); if(*flags_ & O_APPEND) *flags_ &= ~O_APPEND; } static bool _calculate_flush(FlushOnClose const flushonclose_, int const flags_) { switch(flushonclose_) { case FlushOnCloseEnum::NEVER: return false; case FlushOnCloseEnum::OPENED_FOR_WRITE: return !::_rdonly(flags_); case FlushOnCloseEnum::ALWAYS: return true; } return true; } static void _config_to_ffi_flags(Config &cfg_, const int tid_, fuse_file_info_t *ffi_) { switch(cfg.cache_files) { case CacheFiles::ENUM::LIBFUSE: ffi_->direct_io = cfg.direct_io; ffi_->keep_cache = cfg.kernel_cache; ffi_->auto_cache = cfg.auto_cache; break; case CacheFiles::ENUM::OFF: ffi_->direct_io = 1; ffi_->keep_cache = 0; ffi_->auto_cache = 0; break; case CacheFiles::ENUM::PARTIAL: ffi_->direct_io = 0; ffi_->keep_cache = 0; ffi_->auto_cache = 0; break; case CacheFiles::ENUM::FULL: ffi_->direct_io = 0; ffi_->keep_cache = 1; ffi_->auto_cache = 0; break; case CacheFiles::ENUM::AUTO_FULL: ffi_->direct_io = 0; ffi_->keep_cache = 0; ffi_->auto_cache = 1; break; case CacheFiles::ENUM::PER_PROCESS: std::string proc_name; proc_name = procfs::get_name(tid_); if(cfg.cache_files_process_names.count(proc_name) == 0) { ffi_->direct_io = 1; ffi_->keep_cache = 0; ffi_->auto_cache = 0; } else { ffi_->direct_io = 0; ffi_->keep_cache = 0; ffi_->auto_cache = 0; } break; } if(cfg.parallel_direct_writes == true) ffi_->parallel_direct_writes = ffi_->direct_io; } static int _open_path(const fs::path &filepath_, const Branch *branch_, const fs::path &fusepath_, fuse_file_info_t *ffi_, const NFSOpenHack nfsopenhack_) { int fd; FileInfo *fi; fd = fs::openat(AT_FDCWD,filepath_,ffi_->flags); if(fd == -EACCES) fd = ::_nfsopenhack(filepath_,ffi_->flags,nfsopenhack_); if(fd < 0) return fd; fi = new FileInfo(fd,branch_,fusepath_,ffi_->direct_io); ffi_->fh = fi->to_fh(); return 0; } static int _open_fd(const int fd_, const Branch *branch_, const fs::path &fusepath_, fuse_file_info_t *ffi_) { int fd; FileInfo *fi; fd = fs::open_fd(fd_,ffi_->flags); if(fd < 0) return fd; fi = new FileInfo(fd,branch_,fusepath_,ffi_->direct_io); ffi_->fh = fi->to_fh(); return 0; } static int _open(const Policy::Search &searchFunc_, const Branches &ibranches_, const fs::path &fusepath_, fuse_file_info_t *ffi_, const bool link_cow_, const NFSOpenHack nfsopenhack_) { int rv; fs::path filepath; std::vector obranches; rv = searchFunc_(ibranches_,fusepath_,obranches); if(rv < 0) return rv; filepath = obranches[0]->path / fusepath_; if(link_cow_ && fs::cow::is_eligible(filepath,ffi_->flags)) fs::cow::break_link(filepath); rv = ::_open_path(filepath, obranches[0], fusepath_, ffi_, nfsopenhack_); return rv; } constexpr const uint64_t _(const PassthroughEnum e_, const uint64_t m_) { return ((((uint64_t)e_) << 32) | (m_ & O_ACCMODE)); } static int _open_for_insert_lambda(const fuse_req_ctx_t *ctx_, const fs::path &fusepath_, fuse_file_info_t *ffi_, State::OpenFile *of_) { int rv; FileInfo *fi; const ugid::Set ugid(ctx_); ::_config_to_ffi_flags(cfg,ctx_->pid,ffi_); if(cfg.writeback_cache) ::_tweak_flags_writeback_cache(&ffi_->flags); ffi_->noflush = !::_calculate_flush(cfg.flushonclose, ffi_->flags); rv = ::_open(cfg.func.open.policy, cfg.branches, fusepath_, ffi_, cfg.link_cow, cfg.nfsopenhack); if(rv < 0) return rv; fi = FileInfo::from_fh(ffi_->fh); of_->ref_count = 1; of_->fi = fi; switch(_(cfg.passthrough,ffi_->flags)) { case _(Passthrough::ENUM::RO,O_RDONLY): case _(Passthrough::ENUM::WO,O_WRONLY): case _(Passthrough::ENUM::RW,O_RDONLY): case _(Passthrough::ENUM::RW,O_WRONLY): case _(Passthrough::ENUM::RW,O_RDWR): break; default: return 0; } of_->backing_id = FUSE::passthrough_open(fi->fd); if(of_->backing_id <= 0) return 0; ffi_->backing_id = of_->backing_id; ffi_->passthrough = true; ffi_->keep_cache = false; return 0; } static int _open_for_update_lambda(const fuse_req_ctx_t *ctx_, const fs::path &fusepath_, fuse_file_info_t *ffi_, State::OpenFile *of_) { int rv; const ugid::Set ugid(ctx_); ::_config_to_ffi_flags(cfg,ctx_->pid,ffi_); if(cfg.writeback_cache) ::_tweak_flags_writeback_cache(&ffi_->flags); ffi_->noflush = !::_calculate_flush(cfg.flushonclose, ffi_->flags); rv = ::_open_fd(of_->fi->fd, &of_->fi->branch, fusepath_, ffi_); if(rv < 0) return rv; of_->ref_count++; if(of_->backing_id <= 0) return 0; ffi_->backing_id = of_->backing_id; ffi_->passthrough = true; ffi_->keep_cache = false; return rv; } static inline auto _open_insert_lambda(const fuse_req_ctx_t *ctx_, const fs::path &fusepath_, fuse_file_info_t *ffi_, int *rv_) { return [=](auto &val_) { *rv_ = ::_open_for_insert_lambda(ctx_, fusepath_, ffi_, &val_.second); }; } static inline auto _open_update_lambda(const fuse_req_ctx_t *ctx_, const fs::path &fusepath_, fuse_file_info_t *ffi_, int *rv_) { return [=](auto &val_) { // For the edge case where insert succeeded but the open failed // and hadn't been cleaned up yet. There unfortunately is no way // to abort an insert. if(val_.second.ref_count <= 0) { *rv_ = ::_open_for_insert_lambda(ctx_, fusepath_, ffi_, &val_.second); return; } *rv_ = ::_open_for_update_lambda(ctx_, fusepath_, ffi_, &val_.second); }; } static int _open(const fuse_req_ctx_t *ctx_, const fs::path &fusepath_, fuse_file_info_t *ffi_) { int rv; auto &of = state.open_files; rv = -EINVAL; of.try_emplace_and_visit(ctx_->nodeid, ::_open_insert_lambda(ctx_,fusepath_,ffi_,&rv), ::_open_update_lambda(ctx_,fusepath_,ffi_,&rv)); // Can't abort an emplace_and_visit and can't assume another thread // hasn't created an entry since this failure so erase only if // ref_count is default (0). if(rv < 0) of.erase_if(ctx_->nodeid, [](auto &val_) { return (val_.second.ref_count <= 0); }); return rv; } int FUSE::open(const fuse_req_ctx_t *ctx_, const char *fusepath_, fuse_file_info_t *ffi_) { const fs::path fusepath{fusepath_}; return ::_open(ctx_,fusepath,ffi_); }