mergerfs/src/open.cpp

86 lines
2.2 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 <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <string>
#include <vector>
#include "config.hpp"
#include "fileinfo.hpp"
#include "fs_path.hpp"
#include "rwlock.hpp"
#include "ugid.hpp"
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(Policy::Func::Search searchFunc,
const vector<string> &srcmounts,
const size_t minfreespace,
const string &fusepath,
const int flags,
uint64_t &fh)
2014-05-13 00:41:46 +08:00
{
int fd;
int rv;
vector<string> path;
2014-05-13 00:41:46 +08:00
2015-06-17 10:12:55 +08:00
rv = searchFunc(srcmounts,fusepath,minfreespace,path);
if(rv == -1)
return -errno;
2014-05-13 00:41:46 +08:00
2015-07-17 04:57:01 +08:00
fs::path::append(path[0],fusepath);
fd = ::open(path[0].c_str(),flags);
2014-05-13 00:41:46 +08:00
if(fd == -1)
return -errno;
fh = reinterpret_cast<uint64_t>(new FileInfo(fd));
2014-05-13 00:41:46 +08:00
return 0;
}
namespace mergerfs
{
namespace fuse
2014-05-13 00:41:46 +08:00
{
int
2015-07-22 02:19:17 +08:00
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.srcmountslock);
2014-05-13 00:41:46 +08:00
return _open(config.open,
2014-05-13 00:41:46 +08:00
config.srcmounts,
2015-06-17 10:12:55 +08:00
config.minfreespace,
2014-05-13 00:41:46 +08:00
fusepath,
ffi->flags,
ffi->fh);
2014-05-13 00:41:46 +08:00
}
}
}