mergerfs/src/open.cpp

105 lines
2.7 KiB
C++
Raw Normal View History

2014-05-13 00:41:46 +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 <fuse.h>
#include "config.hpp"
#include "errno.hpp"
#include "fileinfo.hpp"
2016-10-19 21:28:06 +08:00
#include "fs_base_open.hpp"
#include "fs_cow.hpp"
#include "fs_path.hpp"
#include "rwlock.hpp"
#include "ugid.hpp"
2014-05-13 00:41:46 +08:00
#include <fcntl.h>
#include <string>
#include <vector>
2014-05-13 00:41:46 +08:00
using std::string;
using std::vector;
using mergerfs::Policy;
2014-05-13 00:41:46 +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;
fs::path::make(basepath_,fusepath_,fullpath);
if(link_cow_ && fs::cow::is_eligible(fullpath.c_str(),flags_))
fs::cow::break_link(fullpath.c_str());
fd = fs::open(fullpath,flags_);
if(fd == -1)
return -errno;
fh_ = reinterpret_cast<uint64_t>(new FileInfo(fd,fusepath_));
return 0;
}
2014-05-13 00:41:46 +08:00
static
int
_open(Policy::Func::Search searchFunc_,
const Branches &branches_,
const uint64_t minfreespace_,
const char *fusepath_,
const int flags_,
const bool link_cow_,
uint64_t &fh_)
2014-05-13 00:41:46 +08:00
{
int rv;
vector<const string*> basepaths;
2014-05-13 00:41:46 +08:00
rv = searchFunc_(branches_,fusepath_,minfreespace_,basepaths);
if(rv == -1)
return -errno;
2014-05-13 00:41:46 +08:00
return _open_core(basepaths[0],fusepath_,flags_,link_cow_,fh_);
2014-05-13 00:41:46 +08:00
}
namespace mergerfs
{
namespace fuse
2014-05-13 00:41:46 +08:00
{
int
open(const char *fusepath_,
fuse_file_info *ffi_)
2014-05-13 00:41: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);
2014-05-13 00:41:46 +08:00
return _open(config.open,
config.branches,
2015-06-17 10:12:55 +08:00
config.minfreespace,
fusepath_,
ffi_->flags,
config.link_cow,
ffi_->fh);
2014-05-13 00:41:46 +08:00
}
}
}