2014-05-13 00:41:46 +08:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
Copyright (c) 2014 Antonio SJ Musumeci <trapexit@spawn.link>
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fuse.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "config.hpp"
|
2015-09-16 06:49:18 +08:00
|
|
|
#include "fileinfo.hpp"
|
|
|
|
#include "fs_path.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
|
|
|
|
|
|
|
using std::string;
|
|
|
|
using std::vector;
|
2015-06-23 11:35:46 +08:00
|
|
|
using mergerfs::Policy;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
|
|
|
static
|
|
|
|
int
|
2015-06-26 05:55:16 +08:00
|
|
|
_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
|
|
|
{
|
2014-08-17 01:59:55 +08:00
|
|
|
int fd;
|
|
|
|
int rv;
|
2015-07-01 19:47:40 +08:00
|
|
|
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);
|
2014-08-17 01:59:55 +08:00
|
|
|
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);
|
|
|
|
|
2015-07-01 19:47:40 +08:00
|
|
|
fd = ::open(path[0].c_str(),flags);
|
2014-05-13 00:41:46 +08:00
|
|
|
if(fd == -1)
|
|
|
|
return -errno;
|
|
|
|
|
2015-09-16 06:49:18 +08:00
|
|
|
fh = reinterpret_cast<uint64_t>(new FileInfo(fd));
|
2014-05-13 00:41:46 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace mergerfs
|
|
|
|
{
|
2015-07-15 22:04:57 +08:00
|
|
|
namespace fuse
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
|
|
|
int
|
2015-07-22 02:19:17 +08:00
|
|
|
open(const char *fusepath,
|
2015-09-16 06:49:18 +08:00
|
|
|
fuse_file_info *ffi)
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2015-09-09 03:56:02 +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
|
|
|
|
2015-06-26 05:55:16 +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,
|
2015-09-16 06:49:18 +08:00
|
|
|
ffi->flags,
|
|
|
|
ffi->fh);
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|