You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

246 lines
5.4 KiB

/*
Copyright (c) 2025, Antonio SJ Musumeci <trapexit@spawn.link> and contributors
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 "policy_lup.hpp"
#include "errno.hpp"
#include "fs_exists.hpp"
#include "fs_info.hpp"
#include "fs_path.hpp"
#include "policies.hpp"
#include "fs_statvfs_cache.hpp"
#include "policy.hpp"
#include "policy_error.hpp"
#include "rwlock.hpp"
#include "base_types.h"
#include <limits>
#include <string>
using std::string;
static
int
_action(const Branches::Ptr &branches_,
const fs::path &fusepath_,
std::vector<Branch*> &paths_)
{
int rv;
int error;
fs::info_t info;
Branch *obranch;
u64 best_used;
u64 best_total;
best_used = 0;
best_total = 1;
obranch = nullptr;
error = ENOENT;
for(auto &branch : *branches_)
{
if(branch.ro())
error_and_continue(error,EROFS);
if(!fs::exists(branch.path,fusepath_))
error_and_continue(error,ENOENT);
rv = fs::info(branch.path,&info);
if(rv < 0)
error_and_continue(error,ENOENT);
if(info.readonly)
error_and_continue(error,EROFS);
u64 used = info.spaceused;
u64 total = info.spaceused + info.spaceavail;
if(total == 0)
{
used = 0;
total = 1;
}
if(obranch == nullptr)
{
best_used = used;
best_total = total;
obranch = &branch;
continue;
}
f80 lhs = (f80)used * (f80)best_total;
f80 rhs = (f80)best_used * (f80)total;
if(lhs >= rhs)
continue;
best_used = used;
best_total = total;
obranch = &branch;
}
if(obranch == nullptr)
return -error;
paths_.push_back(obranch);
return 0;
}
static
int
_search(const Branches::Ptr &branches_,
const fs::path &fusepath_,
std::vector<Branch *> &paths_)
{
int rv;
u64 used;
u64 avail;
u64 best_used;
u64 best_total;
Branch *obranch;
best_used = 0;
best_total = 1;
obranch = nullptr;
for(auto &branch : *branches_)
{
if(!fs::exists(branch.path,fusepath_))
continue;
rv = fs::statvfs_cache_spaceused(branch.path,&used);
if(rv < 0)
continue;
rv = fs::statvfs_cache_spaceavail(branch.path,&avail);
if(rv < 0)
continue;
u64 total = used + avail;
if(total == 0)
{
used = 0;
total = 1;
}
if(obranch == nullptr)
{
best_used = used;
best_total = total;
obranch = &branch;
continue;
}
f80 lhs = (f80)used * (f80)best_total;
f80 rhs = (f80)best_used * (f80)total;
if(lhs >= rhs)
continue;
best_used = used;
best_total = total;
obranch = &branch;
}
if(obranch == nullptr)
return -ENOENT;
paths_.push_back(obranch);
return 0;
}
static
int
_create(const Branches::Ptr &branches_,
std::vector<Branch*> &paths_)
{
int rv;
int error;
u64 best_used;
u64 best_total;
fs::info_t info;
Branch *obranch;
best_used = 0;
best_total = 1;
obranch = nullptr;
error = ENOENT;
for(auto &branch : *branches_)
{
if(branch.ro_or_nc())
error_and_continue(error,EROFS);
rv = fs::info(branch.path,&info);
if(rv < 0)
error_and_continue(error,ENOENT);
if(info.readonly)
error_and_continue(error,EROFS);
if(info.spaceavail < branch.minfreespace())
error_and_continue(error,ENOSPC);
u64 used = info.spaceused;
u64 total = info.spaceused + info.spaceavail;
if(total == 0)
{
used = 0;
total = 1;
}
if(obranch == nullptr)
{
best_used = used;
best_total = total;
obranch = &branch;
continue;
}
f80 lhs = (f80)used * (f80)best_total;
f80 rhs = (f80)best_used * (f80)total;
if(lhs >= rhs)
continue;
best_used = used;
best_total = total;
obranch = &branch;
}
if(obranch == nullptr)
return -error;
paths_.push_back(obranch);
return 0;
}
int
Policy::LUP::Action::operator()(const Branches::Ptr &branches_,
const fs::path &fusepath_,
std::vector<Branch*> &paths_) const
{
return ::_action(branches_,fusepath_,paths_);
}
int
Policy::LUP::Create::operator()(const Branches::Ptr &branches_,
const fs::path &fusepath_,
std::vector<Branch*> &paths_) const
{
return ::_create(branches_,paths_);
}
int
Policy::LUP::Search::operator()(const Branches::Ptr &branches_,
const fs::path &fusepath_,
std::vector<Branch*> &paths_) const
{
return ::_search(branches_,fusepath_,paths_);
}