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 <string>
|
2014-09-27 06:31:22 +08:00
|
|
|
#include <vector>
|
2014-05-13 00:41:46 +08:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
|
2014-09-27 06:31:22 +08:00
|
|
|
#include "config.hpp"
|
|
|
|
#include "ugid.hpp"
|
|
|
|
#include "rwlock.hpp"
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
using std::vector;
|
|
|
|
using namespace mergerfs;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
|
|
|
static
|
|
|
|
int
|
|
|
|
_ioctl(const int fd,
|
2014-07-22 19:07:25 +08:00
|
|
|
const int cmd,
|
2014-05-13 00:41:46 +08:00
|
|
|
void *arg,
|
|
|
|
const unsigned int flags,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
switch(cmd)
|
|
|
|
{
|
2014-05-21 01:48:46 +08:00
|
|
|
#ifdef FS_IOC_GETFLAGS
|
2014-05-13 00:41:46 +08:00
|
|
|
case FS_IOC_GETFLAGS:
|
|
|
|
case FS_IOC_SETFLAGS:
|
2014-05-21 01:48:46 +08:00
|
|
|
#endif
|
|
|
|
#ifdef FS_IOC32_GETFLAGS
|
|
|
|
case FS_IOC32_SETFLAGS:
|
|
|
|
case FS_IOC32_GETFLAGS:
|
|
|
|
#endif
|
|
|
|
#ifdef FS_IOC_GETVERSION
|
|
|
|
case FS_IOC_GETVERSION:
|
|
|
|
case FS_IOC_SETVERSION:
|
|
|
|
#endif
|
|
|
|
#ifdef FS_IOC32_GETVERSION
|
|
|
|
case FS_IOC32_GETVERSION:
|
|
|
|
case FS_IOC32_SETVERSION:
|
|
|
|
#endif
|
2014-05-13 00:41:46 +08:00
|
|
|
rv = ::ioctl(fd,cmd,data);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
rv = -1;
|
|
|
|
errno = ENOTTY;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ((rv == -1) ? -errno : rv);
|
|
|
|
}
|
|
|
|
|
2014-11-05 02:42:20 +08:00
|
|
|
#ifdef FUSE_IOCTL_DIR
|
2014-09-27 06:31:22 +08:00
|
|
|
static
|
|
|
|
int
|
2015-06-26 05:55:16 +08:00
|
|
|
_ioctl_dir_base(Policy::Func::Search searchFunc,
|
|
|
|
const vector<string> &srcmounts,
|
|
|
|
const size_t minfreespace,
|
|
|
|
const string &fusepath,
|
|
|
|
const int cmd,
|
|
|
|
void *arg,
|
|
|
|
const unsigned int flags,
|
|
|
|
void *data)
|
2014-09-27 06:31:22 +08:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
int rv;
|
2015-07-01 19:47:40 +08:00
|
|
|
vector<string> path;
|
2014-09-27 06:31:22 +08:00
|
|
|
|
2015-06-17 10:12:55 +08:00
|
|
|
rv = searchFunc(srcmounts,fusepath,minfreespace,path);
|
2014-09-27 06:31:22 +08:00
|
|
|
if(rv == -1)
|
|
|
|
return -errno;
|
|
|
|
|
2015-07-01 19:47:40 +08:00
|
|
|
fs::path::append(path[0],fusepath);
|
|
|
|
|
|
|
|
fd = ::open(path[0].c_str(),flags);
|
2014-09-27 06:31:22 +08:00
|
|
|
if(fd == -1)
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
rv = _ioctl(fd,cmd,arg,flags,data);
|
|
|
|
|
2015-07-01 19:47:40 +08:00
|
|
|
::close(fd);
|
2014-09-27 06:31:22 +08:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
int
|
2014-11-11 10:01:20 +08:00
|
|
|
_ioctl_dir(const string &fusepath,
|
2014-09-27 06:31:22 +08:00
|
|
|
const int cmd,
|
|
|
|
void *arg,
|
|
|
|
const unsigned int flags,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
const struct fuse_context *fc = fuse_get_context();
|
|
|
|
const config::Config &config = config::get(fc);
|
|
|
|
const ugid::SetResetGuard ugid(fc->uid,fc->gid);
|
|
|
|
const rwlock::ReadGuard readlock(&config.srcmountslock);
|
|
|
|
|
2015-06-26 05:55:16 +08:00
|
|
|
return _ioctl_dir_base(config.getattr,
|
2014-09-27 06:31:22 +08:00
|
|
|
config.srcmounts,
|
2015-06-17 10:12:55 +08:00
|
|
|
config.minfreespace,
|
2014-09-27 06:31:22 +08:00
|
|
|
fusepath,
|
|
|
|
cmd,
|
|
|
|
arg,
|
|
|
|
flags,
|
|
|
|
data);
|
|
|
|
}
|
2014-11-05 02:42:20 +08:00
|
|
|
#endif
|
2014-09-27 06:31:22 +08:00
|
|
|
|
2014-05-13 00:41:46 +08:00
|
|
|
namespace mergerfs
|
|
|
|
{
|
|
|
|
namespace ioctl
|
|
|
|
{
|
|
|
|
int
|
|
|
|
ioctl(const char *fusepath,
|
|
|
|
int cmd,
|
|
|
|
void *arg,
|
2014-07-29 12:00:42 +08:00
|
|
|
struct fuse_file_info *ffi,
|
2014-05-13 00:41:46 +08:00
|
|
|
unsigned int flags,
|
|
|
|
void *data)
|
|
|
|
{
|
2014-11-05 02:42:20 +08:00
|
|
|
#ifdef FUSE_IOCTL_DIR
|
2014-09-27 06:31:22 +08:00
|
|
|
if(flags & FUSE_IOCTL_DIR)
|
|
|
|
return _ioctl_dir(fusepath,
|
|
|
|
cmd,
|
|
|
|
arg,
|
|
|
|
flags,
|
|
|
|
data);
|
2014-11-05 02:42:20 +08:00
|
|
|
#endif
|
2014-09-27 06:31:22 +08:00
|
|
|
|
2015-03-06 11:15:54 +08:00
|
|
|
return _ioctl(ffi->fh,
|
2014-07-22 19:07:25 +08:00
|
|
|
cmd,
|
2014-05-13 00:41:46 +08:00
|
|
|
arg,
|
|
|
|
flags,
|
|
|
|
data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|