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>
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2016-01-15 05:50:22 +08:00
|
|
|
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.
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2016-01-15 05:50:22 +08:00
|
|
|
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"
|
2017-01-14 01:46:17 +08:00
|
|
|
#include "fs_acl.hpp"
|
2015-09-16 06:49:18 +08:00
|
|
|
#include "fs_clonepath.hpp"
|
2020-08-18 04:29:22 +08:00
|
|
|
#include "fs_open.hpp"
|
2016-09-14 20:36:06 +08:00
|
|
|
#include "fs_path.hpp"
|
2015-09-16 06:49:18 +08:00
|
|
|
#include "ugid.hpp"
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2020-12-20 04:06:08 +08:00
|
|
|
#include "fuse.h"
|
2019-01-09 13:01:52 +08:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2014-05-13 00:41:46 +08:00
|
|
|
using std::string;
|
|
|
|
using std::vector;
|
|
|
|
|
2020-12-20 04:06:08 +08:00
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
namespace l
|
2017-01-14 01:46:17 +08:00
|
|
|
{
|
2020-02-08 03:05:03 +08:00
|
|
|
/*
|
|
|
|
The kernel expects being able to issue read requests when running
|
|
|
|
with writeback caching enabled so we must change O_WRONLY to
|
|
|
|
O_RDWR.
|
|
|
|
|
|
|
|
With writeback caching enabled the kernel handles O_APPEND. Could
|
|
|
|
be an issue if the underlying file changes out of band but that is
|
|
|
|
true of any caching.
|
|
|
|
*/
|
|
|
|
static
|
2020-02-13 03:15:31 +08:00
|
|
|
void
|
|
|
|
tweak_flags_writeback_cache(int *flags_)
|
2020-02-08 03:05:03 +08:00
|
|
|
{
|
2020-02-13 03:15:31 +08:00
|
|
|
if((*flags_ & O_ACCMODE) == O_WRONLY)
|
|
|
|
*flags_ = ((*flags_ & ~O_ACCMODE) | O_RDWR);
|
|
|
|
if(*flags_ & O_APPEND)
|
|
|
|
*flags_ &= ~O_APPEND;
|
|
|
|
}
|
2020-02-08 03:05:03 +08:00
|
|
|
|
2020-02-13 03:15:31 +08:00
|
|
|
static
|
|
|
|
void
|
2020-12-20 04:06:08 +08:00
|
|
|
config_to_ffi_flags(Config::Read &cfg_,
|
2020-11-16 08:12:33 +08:00
|
|
|
fuse_file_info_t *ffi_)
|
2020-02-13 03:15:31 +08:00
|
|
|
{
|
2020-12-20 04:06:08 +08:00
|
|
|
switch(cfg_->cache_files)
|
2020-02-13 03:15:31 +08:00
|
|
|
{
|
2019-09-24 22:27:46 +08:00
|
|
|
case CacheFiles::ENUM::LIBFUSE:
|
2020-12-20 04:06:08 +08:00
|
|
|
ffi_->direct_io = cfg_->direct_io;
|
|
|
|
ffi_->keep_cache = cfg_->kernel_cache;
|
|
|
|
ffi_->auto_cache = cfg_->auto_cache;
|
2020-02-13 03:15:31 +08:00
|
|
|
break;
|
2019-09-24 22:27:46 +08:00
|
|
|
case CacheFiles::ENUM::OFF:
|
2020-02-13 03:15:31 +08:00
|
|
|
ffi_->direct_io = 1;
|
|
|
|
ffi_->keep_cache = 0;
|
|
|
|
ffi_->auto_cache = 0;
|
|
|
|
break;
|
2019-09-24 22:27:46 +08:00
|
|
|
case CacheFiles::ENUM::PARTIAL:
|
2020-02-13 03:15:31 +08:00
|
|
|
ffi_->direct_io = 0;
|
|
|
|
ffi_->keep_cache = 0;
|
|
|
|
ffi_->auto_cache = 0;
|
|
|
|
break;
|
2019-09-24 22:27:46 +08:00
|
|
|
case CacheFiles::ENUM::FULL:
|
2020-02-13 03:15:31 +08:00
|
|
|
ffi_->direct_io = 0;
|
|
|
|
ffi_->keep_cache = 1;
|
|
|
|
ffi_->auto_cache = 0;
|
|
|
|
break;
|
2019-09-24 22:27:46 +08:00
|
|
|
case CacheFiles::ENUM::AUTO_FULL:
|
2020-02-13 03:15:31 +08:00
|
|
|
ffi_->direct_io = 0;
|
|
|
|
ffi_->keep_cache = 0;
|
|
|
|
ffi_->auto_cache = 1;
|
|
|
|
break;
|
|
|
|
}
|
2020-02-08 03:05:03 +08:00
|
|
|
}
|
|
|
|
|
2019-01-09 13:01:52 +08:00
|
|
|
static
|
|
|
|
int
|
|
|
|
create_core(const string &fullpath_,
|
|
|
|
mode_t mode_,
|
|
|
|
const mode_t umask_,
|
|
|
|
const int flags_)
|
|
|
|
{
|
|
|
|
if(!fs::acl::dir_has_defaults(fullpath_))
|
|
|
|
mode_ &= ~umask_;
|
2016-01-30 05:54:39 +08:00
|
|
|
|
2019-01-09 13:01:52 +08:00
|
|
|
return fs::open(fullpath_,flags_,mode_);
|
|
|
|
}
|
2016-01-30 05:54:39 +08:00
|
|
|
|
2019-01-09 13:01:52 +08:00
|
|
|
static
|
|
|
|
int
|
|
|
|
create_core(const string &createpath_,
|
|
|
|
const char *fusepath_,
|
|
|
|
const mode_t mode_,
|
|
|
|
const mode_t umask_,
|
|
|
|
const int flags_,
|
|
|
|
uint64_t *fh_)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
string fullpath;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
fullpath = fs::path::make(createpath_,fusepath_);
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
rv = l::create_core(fullpath,mode_,umask_,flags_);
|
2019-01-09 13:01:52 +08:00
|
|
|
if(rv == -1)
|
|
|
|
return -errno;
|
2014-06-18 07:12:09 +08:00
|
|
|
|
2019-01-09 13:01:52 +08:00
|
|
|
*fh_ = reinterpret_cast<uint64_t>(new FileInfo(rv,fusepath_));
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-09 13:01:52 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2018-03-08 07:24:47 +08:00
|
|
|
|
2019-01-09 13:01:52 +08:00
|
|
|
static
|
|
|
|
int
|
2020-12-20 04:06:08 +08:00
|
|
|
create(const Policy::Search &searchFunc_,
|
|
|
|
const Policy::Create &createFunc_,
|
2019-01-09 13:01:52 +08:00
|
|
|
const Branches &branches_,
|
|
|
|
const char *fusepath_,
|
|
|
|
const mode_t mode_,
|
|
|
|
const mode_t umask_,
|
|
|
|
const int flags_,
|
|
|
|
uint64_t *fh_)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
string fullpath;
|
|
|
|
string fusedirpath;
|
2020-12-20 04:06:08 +08:00
|
|
|
StrVec createpaths;
|
|
|
|
StrVec existingpaths;
|
2019-01-09 13:01:52 +08:00
|
|
|
|
|
|
|
fusedirpath = fs::path::dirname(fusepath_);
|
|
|
|
|
2020-08-21 06:47:04 +08:00
|
|
|
rv = searchFunc_(branches_,fusedirpath,&existingpaths);
|
2019-01-09 13:01:52 +08:00
|
|
|
if(rv == -1)
|
|
|
|
return -errno;
|
|
|
|
|
2020-08-21 06:47:04 +08:00
|
|
|
rv = createFunc_(branches_,fusedirpath,&createpaths);
|
2019-01-09 13:01:52 +08:00
|
|
|
if(rv == -1)
|
|
|
|
return -errno;
|
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
rv = fs::clonepath_as_root(existingpaths[0],createpaths[0],fusedirpath);
|
2019-01-09 13:01:52 +08:00
|
|
|
if(rv == -1)
|
|
|
|
return -errno;
|
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
return l::create_core(createpaths[0],
|
2019-01-25 20:03:46 +08:00
|
|
|
fusepath_,
|
|
|
|
mode_,
|
|
|
|
umask_,
|
|
|
|
flags_,
|
|
|
|
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
|
2020-11-16 08:12:33 +08:00
|
|
|
create(const char *fusepath_,
|
|
|
|
mode_t mode_,
|
|
|
|
fuse_file_info_t *ffi_)
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2020-12-20 04:06:08 +08:00
|
|
|
Config::Read cfg;
|
|
|
|
const fuse_context *fc = fuse_get_context();
|
2019-09-24 22:27:46 +08:00
|
|
|
const ugid::Set ugid(fc->uid,fc->gid);
|
2019-01-25 20:03:46 +08:00
|
|
|
|
2020-12-20 04:06:08 +08:00
|
|
|
l::config_to_ffi_flags(cfg,ffi_);
|
2019-05-24 11:22:36 +08:00
|
|
|
|
2020-12-20 04:06:08 +08:00
|
|
|
if(cfg->writeback_cache)
|
2020-02-13 03:15:31 +08:00
|
|
|
l::tweak_flags_writeback_cache(&ffi_->flags);
|
2020-02-08 03:05:03 +08:00
|
|
|
|
2020-12-20 04:06:08 +08:00
|
|
|
return l::create(cfg->func.getattr.policy,
|
|
|
|
cfg->func.create.policy,
|
|
|
|
cfg->branches,
|
2019-01-25 20:03:46 +08:00
|
|
|
fusepath_,
|
|
|
|
mode_,
|
|
|
|
fc->umask,
|
|
|
|
ffi_->flags,
|
|
|
|
&ffi_->fh);
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
}
|