/* 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 "errno.hpp" #include "fs_exists.hpp" #include "fs_info.hpp" #include "fs_path.hpp" #include "policy.hpp" #include "policy_error.hpp" #include "rwlock.hpp" #include #include #include using std::string; using std::vector; namespace lfs { static int create(const BranchVec &branches_, vector *paths_) { int rv; int error; uint64_t lfs; fs::info_t info; const Branch *branch; const string *basepath; error = ENOENT; lfs = std::numeric_limits::max(); basepath = NULL; for(size_t i = 0, ei = branches_.size(); i != ei; i++) { branch = &branches_[i]; if(branch->ro_or_nc()) error_and_continue(error,EROFS); rv = fs::info(branch->path,&info); if(rv == -1) error_and_continue(error,ENOENT); if(info.readonly) error_and_continue(error,EROFS); if(info.spaceavail < branch->minfreespace()) error_and_continue(error,ENOSPC); if(info.spaceavail > lfs) continue; lfs = info.spaceavail; basepath = &branch->path; } if(basepath == NULL) return (errno=error,-1); paths_->push_back(*basepath); return 0; } static int create(const Branches &branches_, vector *paths_) { rwlock::ReadGuard guard(branches_.lock); return lfs::create(branches_.vec,paths_); } } int Policy::Func::lfs(const Category type_, const Branches &branches_, const char *fusepath_, vector *paths_) { if(type_ == Category::CREATE) return lfs::create(branches_,paths_); return Policy::Func::eplfs(type_,branches_,fusepath_,paths_); }