/* 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 #include #include #include #include #include #include "config.hpp" #include "fs_path.hpp" #include "rv.hpp" #include "rwlock.hpp" #include "ugid.hpp" using std::string; using std::vector; using mergerfs::Policy; static int _truncate_loop_core(const string *basepath, const char *fusepath, const off_t size, const int error) { int rv; string fullpath; fs::path::make(basepath,fusepath,fullpath); rv = ::truncate(fullpath.c_str(),size); return calc_error(rv,error,errno); } static int _truncate_loop(const vector &basepaths, const char *fusepath, const off_t size) { int error; error = -1; for(size_t i = 0, ei = basepaths.size(); i != ei; i++) { error = _truncate_loop_core(basepaths[0],fusepath,size,error); } return -error; } static int _truncate(Policy::Func::Action actionFunc, const vector &srcmounts, const uint64_t minfreespace, const char *fusepath, const off_t size) { int rv; vector basepaths; rv = actionFunc(srcmounts,fusepath,minfreespace,basepaths); if(rv == -1) return -errno; return _truncate_loop(basepaths,fusepath,size); } namespace mergerfs { namespace fuse { int truncate(const char *fusepath, off_t size) { const fuse_context *fc = fuse_get_context(); const Config &config = Config::get(fc); const ugid::Set ugid(fc->uid,fc->gid); const rwlock::ReadGuard readlock(&config.srcmountslock); return _truncate(config.truncate, config.srcmounts, config.minfreespace, fusepath, size); } } }