2014-05-13 00:41:46 +08:00
|
|
|
/*
|
2016-01-15 05:50:22 +08:00
|
|
|
Copyright (c) 2016, Antonio SJ Musumeci <trapexit@spawn.link>
|
|
|
|
|
|
|
|
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.
|
2014-05-13 00:41:46 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.hpp"
|
2016-09-14 20:36:06 +08:00
|
|
|
#include "errno.hpp"
|
2015-09-16 06:49:18 +08:00
|
|
|
#include "fileinfo.hpp"
|
2016-10-19 21:28:06 +08:00
|
|
|
#include "fs_base_open.hpp"
|
2018-10-03 02:22:37 +08:00
|
|
|
#include "fs_cow.hpp"
|
2015-09-16 06:49:18 +08:00
|
|
|
#include "fs_path.hpp"
|
2019-01-07 01:52:55 +08:00
|
|
|
#include "policy_cache.hpp"
|
2014-08-04 03:50:28 +08:00
|
|
|
#include "rwlock.hpp"
|
2015-09-16 06:49:18 +08:00
|
|
|
#include "ugid.hpp"
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-09 13:01:52 +08:00
|
|
|
#include <fuse.h>
|
2018-10-03 02:22:37 +08:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2014-05-13 00:41:46 +08:00
|
|
|
using std::string;
|
|
|
|
using std::vector;
|
2019-05-24 11:22:36 +08:00
|
|
|
typedef Config::CacheFiles CacheFiles;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
namespace l
|
2016-01-30 05:54:39 +08:00
|
|
|
{
|
2019-01-09 13:01:52 +08:00
|
|
|
static
|
|
|
|
int
|
|
|
|
open_core(const string &basepath_,
|
|
|
|
const char *fusepath_,
|
|
|
|
const int flags_,
|
|
|
|
const bool link_cow_,
|
|
|
|
uint64_t *fh_)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
string fullpath;
|
2016-01-30 05:54:39 +08:00
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
fullpath = fs::path::make(basepath_,fusepath_);
|
2018-10-03 02:22:37 +08:00
|
|
|
|
2019-01-09 13:01:52 +08:00
|
|
|
if(link_cow_ && fs::cow::is_eligible(fullpath.c_str(),flags_))
|
|
|
|
fs::cow::break_link(fullpath.c_str());
|
2016-01-30 05:54:39 +08:00
|
|
|
|
2019-01-09 13:01:52 +08:00
|
|
|
fd = fs::open(fullpath,flags_);
|
|
|
|
if(fd == -1)
|
|
|
|
return -errno;
|
2016-01-30 05:54:39 +08:00
|
|
|
|
2019-01-09 13:01:52 +08:00
|
|
|
*fh_ = reinterpret_cast<uint64_t>(new FileInfo(fd,fusepath_));
|
2016-01-30 05:54:39 +08:00
|
|
|
|
2019-01-09 13:01:52 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2016-01-30 05:54:39 +08:00
|
|
|
|
2019-01-09 13:01:52 +08:00
|
|
|
static
|
|
|
|
int
|
|
|
|
open(Policy::Func::Search searchFunc_,
|
2019-01-07 01:52:55 +08:00
|
|
|
PolicyCache &cache,
|
2019-01-09 13:01:52 +08:00
|
|
|
const Branches &branches_,
|
|
|
|
const uint64_t minfreespace_,
|
|
|
|
const char *fusepath_,
|
|
|
|
const int flags_,
|
|
|
|
const bool link_cow_,
|
|
|
|
uint64_t *fh_)
|
|
|
|
{
|
|
|
|
int rv;
|
2019-01-07 01:52:55 +08:00
|
|
|
string basepath;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-07 01:52:55 +08:00
|
|
|
rv = cache(searchFunc_,branches_,fusepath_,minfreespace_,&basepath);
|
2019-01-09 13:01:52 +08:00
|
|
|
if(rv == -1)
|
|
|
|
return -errno;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
return l::open_core(basepath,fusepath_,flags_,link_cow_,fh_);
|
2019-01-09 13:01:52 +08:00
|
|
|
}
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
namespace FUSE
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2019-01-25 20:03:46 +08:00
|
|
|
int
|
|
|
|
open(const char *fusepath_,
|
|
|
|
fuse_file_info *ffi_)
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2019-01-25 20:03:46 +08:00
|
|
|
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.branches_lock);
|
|
|
|
|
2019-05-24 11:22:36 +08:00
|
|
|
switch(config.cache_files)
|
|
|
|
{
|
|
|
|
case CacheFiles::LIBFUSE:
|
|
|
|
ffi_->direct_io = config.direct_io;
|
|
|
|
ffi_->keep_cache = config.kernel_cache;
|
|
|
|
ffi_->auto_cache = config.auto_cache;
|
|
|
|
break;
|
|
|
|
case CacheFiles::OFF:
|
|
|
|
ffi_->direct_io = 1;
|
|
|
|
ffi_->keep_cache = 0;
|
|
|
|
ffi_->auto_cache = 0;
|
|
|
|
break;
|
|
|
|
case CacheFiles::PARTIAL:
|
|
|
|
ffi_->direct_io = 0;
|
|
|
|
ffi_->keep_cache = 0;
|
|
|
|
ffi_->auto_cache = 0;
|
|
|
|
break;
|
|
|
|
case CacheFiles::FULL:
|
|
|
|
ffi_->direct_io = 0;
|
|
|
|
ffi_->keep_cache = 1;
|
|
|
|
ffi_->auto_cache = 0;
|
|
|
|
break;
|
|
|
|
case CacheFiles::AUTO_FULL:
|
|
|
|
ffi_->direct_io = 0;
|
|
|
|
ffi_->keep_cache = 0;
|
|
|
|
ffi_->auto_cache = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
return l::open(config.open,
|
|
|
|
config.open_cache,
|
|
|
|
config.branches,
|
|
|
|
config.minfreespace,
|
|
|
|
fusepath_,
|
|
|
|
ffi_->flags,
|
|
|
|
config.link_cow,
|
|
|
|
&ffi_->fh);
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
}
|