/* 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 "config.hpp" #include "errno.hpp" #include "fs_base_rename.hpp" #include "fs_clonepath.hpp" #include "fs_path.hpp" #include "rv.hpp" #include "rwlock.hpp" #include "success_fail.hpp" #include "ugid.hpp" using std::string; using std::vector; using std::set; using mergerfs::Policy; using namespace mergerfs; static bool member(const vector &haystack, const string &needle) { for(size_t i = 0, ei = haystack.size(); i != ei; i++) { if(*haystack[i] == needle) return true; } return false; } static void _remove(const vector &toremove) { for(size_t i = 0, ei = toremove.size(); i != ei; i++) ::remove(toremove[i].c_str()); } static void _rename_create_path_core(const vector &oldbasepaths, const string &oldbasepath, const string &newbasepath, const char *oldfusepath, const char *newfusepath, const string &newfusedirpath, int &error, vector &tounlink) { int rv; bool ismember; string oldfullpath; string newfullpath; fs::path::make(&oldbasepath,newfusepath,newfullpath); ismember = member(oldbasepaths,oldbasepath); if(ismember) { if(oldbasepath != newbasepath) { const ugid::SetRootGuard ugidGuard; fs::clonepath(newbasepath,oldbasepath,newfusedirpath.c_str()); } fs::path::make(&oldbasepath,oldfusepath,oldfullpath); rv = fs::rename(oldfullpath,newfullpath); error = calc_error(rv,error,errno); if(RENAME_FAILED(rv)) tounlink.push_back(oldfullpath); } else { tounlink.push_back(newfullpath); } } static int _rename_create_path(Policy::Func::Search searchFunc, Policy::Func::Action actionFunc, const vector &srcmounts, const uint64_t minfreespace, const char *oldfusepath, const char *newfusepath) { int rv; int error; vector toremove; vector newbasepath; vector oldbasepaths; rv = actionFunc(srcmounts,oldfusepath,minfreespace,oldbasepaths); if(POLICY_FAILED(rv)) return -errno; string newfusedirpath = newfusepath; fs::path::dirname(newfusedirpath); rv = searchFunc(srcmounts,newfusedirpath.c_str(),minfreespace,newbasepath); if(POLICY_FAILED(rv)) return -errno; error = RENAME_FAIL; for(size_t i = 0, ei = srcmounts.size(); i != ei; i++) { const string &oldbasepath = srcmounts[i]; _rename_create_path_core(oldbasepaths, oldbasepath,*newbasepath[0], oldfusepath,newfusepath, newfusedirpath, error,toremove); } if(RENAME_SUCCEEDED(error)) _remove(toremove); return -error; } static int _clonepath(Policy::Func::Search searchFunc, const vector &srcmounts, const uint64_t minfreespace, const string &dstbasepath, const string &fusedirpath) { int rv; vector srcbasepath; rv = searchFunc(srcmounts,fusedirpath.c_str(),minfreespace,srcbasepath); if(POLICY_FAILED(rv)) return rv; { const ugid::SetRootGuard ugidGuard; fs::clonepath(*srcbasepath[0],dstbasepath,fusedirpath.c_str()); } return POLICY_SUCCESS; } static int _clonepath_if_would_create(Policy::Func::Search searchFunc, Policy::Func::Create createFunc, const vector &srcmounts, const uint64_t minfreespace, const string &oldbasepath, const char *oldfusepath, const char *newfusepath) { int rv; string newfusedirpath; vector newbasepath; newfusedirpath = newfusepath; fs::path::dirname(newfusedirpath); rv = createFunc(srcmounts,newfusedirpath.c_str(),minfreespace,newbasepath); if(POLICY_FAILED(rv)) return rv; if(oldbasepath == *newbasepath[0]) return _clonepath(searchFunc,srcmounts,minfreespace,oldbasepath,newfusedirpath); return POLICY_FAIL_ERRNO(EXDEV); } static void _rename_preserve_path_core(Policy::Func::Search searchFunc, Policy::Func::Create createFunc, const vector &srcmounts, const uint64_t minfreespace, const vector &oldbasepaths, const string &oldbasepath, const char *oldfusepath, const char *newfusepath, int &error, vector &toremove) { int rv; bool ismember; string newfullpath; fs::path::make(&oldbasepath,newfusepath,newfullpath); ismember = member(oldbasepaths,oldbasepath); if(ismember) { string oldfullpath; fs::path::make(&oldbasepath,oldfusepath,oldfullpath); rv = fs::rename(oldfullpath,newfullpath); if(RENAME_FAILED_WITH(rv,ENOENT)) { rv = _clonepath_if_would_create(searchFunc,createFunc, srcmounts,minfreespace, oldbasepath,oldfusepath,newfusepath); if(POLICY_SUCCEEDED(rv)) rv = fs::rename(oldfullpath,newfullpath); } error = calc_error(rv,error,errno); if(RENAME_FAILED(rv)) toremove.push_back(oldfullpath); } else { toremove.push_back(newfullpath); } } static int _rename_preserve_path(Policy::Func::Search searchFunc, Policy::Func::Action actionFunc, Policy::Func::Create createFunc, const vector &srcmounts, const uint64_t minfreespace, const char *oldfusepath, const char *newfusepath) { int rv; int error; vector toremove; vector oldbasepaths; rv = actionFunc(srcmounts,oldfusepath,minfreespace,oldbasepaths); if(POLICY_FAILED(rv)) return -errno; error = RENAME_FAIL; for(size_t i = 0, ei = srcmounts.size(); i != ei; i++) { const string &oldbasepath = srcmounts[i]; _rename_preserve_path_core(searchFunc,createFunc, srcmounts,minfreespace, oldbasepaths,oldbasepath, oldfusepath,newfusepath, error,toremove); } if(RENAME_SUCCEEDED(error)) _remove(toremove); return -error; } namespace mergerfs { namespace fuse { int rename(const char *oldpath, const char *newpath) { 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); if(config.create->path_preserving()) return _rename_preserve_path(config.getattr, config.rename, config.create, config.srcmounts, config.minfreespace, oldpath, newpath); return _rename_create_path(config.getattr, config.rename, config.srcmounts, config.minfreespace, oldpath, newpath); } } }