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"
|
2020-08-18 04:29:22 +08:00
|
|
|
#include "fs_lchmod.hpp"
|
2018-10-03 02:22:37 +08:00
|
|
|
#include "fs_cow.hpp"
|
2020-08-18 04:29:22 +08:00
|
|
|
#include "fs_fchmod.hpp"
|
|
|
|
#include "fs_open.hpp"
|
2015-09-16 06:49:18 +08:00
|
|
|
#include "fs_path.hpp"
|
2020-08-18 04:29:22 +08:00
|
|
|
#include "fs_stat.hpp"
|
2019-01-07 01:52:55 +08:00
|
|
|
#include "policy_cache.hpp"
|
2020-07-17 03:31:50 +08:00
|
|
|
#include "stat_util.hpp"
|
2015-09-16 06:49:18 +08:00
|
|
|
#include "ugid.hpp"
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2020-07-17 03:31:50 +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-01-25 20:03:46 +08:00
|
|
|
namespace l
|
2016-01-30 05:54:39 +08:00
|
|
|
{
|
2020-07-17 03:31:50 +08:00
|
|
|
static
|
|
|
|
bool
|
|
|
|
rdonly(const int flags_)
|
|
|
|
{
|
|
|
|
return ((flags_ & O_ACCMODE) == O_RDONLY);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
int
|
2020-08-18 04:29:22 +08:00
|
|
|
lchmod_and_open_if_not_writable_and_empty(const string &fullpath_,
|
|
|
|
const int flags_)
|
2020-07-17 03:31:50 +08:00
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
rv = fs::lstat(fullpath_,&st);
|
|
|
|
if(rv == -1)
|
|
|
|
return (errno=EACCES,-1);
|
|
|
|
|
2020-07-27 05:11:06 +08:00
|
|
|
if(StatUtil::writable(st))
|
2020-07-17 03:31:50 +08:00
|
|
|
return (errno=EACCES,-1);
|
|
|
|
|
2020-08-18 04:29:22 +08:00
|
|
|
rv = fs::lchmod(fullpath_,(st.st_mode|S_IWUSR|S_IWGRP));
|
2020-07-17 03:31:50 +08:00
|
|
|
if(rv == -1)
|
|
|
|
return (errno=EACCES,-1);
|
|
|
|
|
|
|
|
rv = fs::open(fullpath_,flags_);
|
|
|
|
if(rv == -1)
|
|
|
|
return (errno=EACCES,-1);
|
|
|
|
|
|
|
|
fs::fchmod(rv,st.st_mode);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
int
|
|
|
|
nfsopenhack(const std::string &fullpath_,
|
|
|
|
const int flags_,
|
|
|
|
const NFSOpenHack nfsopenhack_)
|
|
|
|
{
|
|
|
|
switch(nfsopenhack_)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case NFSOpenHack::ENUM::OFF:
|
|
|
|
return (errno=EACCES,-1);
|
|
|
|
case NFSOpenHack::ENUM::GIT:
|
|
|
|
if(l::rdonly(flags_))
|
|
|
|
return (errno=EACCES,-1);
|
|
|
|
if(fullpath_.find("/.git/") == string::npos)
|
|
|
|
return (errno=EACCES,-1);
|
2020-08-18 04:29:22 +08:00
|
|
|
return l::lchmod_and_open_if_not_writable_and_empty(fullpath_,flags_);
|
2020-07-17 03:31:50 +08:00
|
|
|
case NFSOpenHack::ENUM::ALL:
|
|
|
|
if(l::rdonly(flags_))
|
|
|
|
return (errno=EACCES,-1);
|
2020-08-18 04:29:22 +08:00
|
|
|
return l::lchmod_and_open_if_not_writable_and_empty(fullpath_,flags_);
|
2020-07-17 03:31:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-13 03:15:31 +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.
|
|
|
|
*/
|
2020-02-08 03:05:03 +08:00
|
|
|
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-11-16 08:12:33 +08:00
|
|
|
config_to_ffi_flags(const Config &config_,
|
|
|
|
fuse_file_info_t *ffi_)
|
2020-02-13 03:15:31 +08:00
|
|
|
{
|
|
|
|
switch(config_.cache_files)
|
|
|
|
{
|
2019-09-24 22:27:46 +08:00
|
|
|
case CacheFiles::ENUM::LIBFUSE:
|
2020-02-13 03:15:31 +08:00
|
|
|
ffi_->direct_io = config_.direct_io;
|
|
|
|
ffi_->keep_cache = config_.kernel_cache;
|
|
|
|
ffi_->auto_cache = config_.auto_cache;
|
|
|
|
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
|
2020-07-17 03:31:50 +08:00
|
|
|
open_core(const string &basepath_,
|
|
|
|
const char *fusepath_,
|
|
|
|
const int flags_,
|
|
|
|
const bool link_cow_,
|
|
|
|
const NFSOpenHack nfsopenhack_,
|
|
|
|
uint64_t *fh_)
|
2019-01-09 13:01:52 +08:00
|
|
|
{
|
|
|
|
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_);
|
2020-07-17 03:31:50 +08:00
|
|
|
if((fd == -1) && (errno == EACCES))
|
|
|
|
fd = l::nfsopenhack(fullpath,flags_,nfsopenhack_);
|
2019-01-09 13:01:52 +08:00
|
|
|
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 char *fusepath_,
|
|
|
|
const int flags_,
|
|
|
|
const bool link_cow_,
|
2020-07-17 03:31:50 +08:00
|
|
|
const NFSOpenHack nfsopenhack_,
|
2019-01-09 13:01:52 +08:00
|
|
|
uint64_t *fh_)
|
|
|
|
{
|
|
|
|
int rv;
|
2019-01-07 01:52:55 +08:00
|
|
|
string basepath;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2020-08-21 06:47:04 +08:00
|
|
|
rv = cache(searchFunc_,branches_,fusepath_,&basepath);
|
2019-01-09 13:01:52 +08:00
|
|
|
if(rv == -1)
|
|
|
|
return -errno;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2020-07-17 03:31:50 +08:00
|
|
|
return l::open_core(basepath,fusepath_,flags_,link_cow_,nfsopenhack_,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
|
|
|
open(const char *fusepath_,
|
|
|
|
fuse_file_info_t *ffi_)
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2019-09-24 22:27:46 +08:00
|
|
|
const fuse_context *fc = fuse_get_context();
|
|
|
|
const Config &config = Config::ro();
|
|
|
|
const ugid::Set ugid(fc->uid,fc->gid);
|
2019-01-25 20:03:46 +08:00
|
|
|
|
2020-02-13 03:15:31 +08:00
|
|
|
l::config_to_ffi_flags(config,ffi_);
|
2019-05-24 11:22:36 +08:00
|
|
|
|
2020-02-08 03:05:03 +08:00
|
|
|
if(config.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
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
return l::open(config.func.open.policy,
|
2019-01-25 20:03:46 +08:00
|
|
|
config.open_cache,
|
|
|
|
config.branches,
|
|
|
|
fusepath_,
|
|
|
|
ffi_->flags,
|
|
|
|
config.link_cow,
|
2020-07-17 03:31:50 +08:00
|
|
|
config.nfsopenhack,
|
2019-01-25 20:03:46 +08:00
|
|
|
&ffi_->fh);
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
}
|