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"
|
2019-09-24 22:27:46 +08:00
|
|
|
#include "ef.hpp"
|
2018-10-08 10:28:58 +08:00
|
|
|
#include "errno.hpp"
|
2018-09-12 04:45:17 +08:00
|
|
|
#include "fs_glob.hpp"
|
2018-12-12 23:08:17 +08:00
|
|
|
#include "fs_statvfs_cache.hpp"
|
2019-09-24 22:27:46 +08:00
|
|
|
#include "hw_cpu.hpp"
|
2015-09-28 18:39:16 +08:00
|
|
|
#include "num.hpp"
|
2014-05-13 00:41:46 +08:00
|
|
|
#include "policy.hpp"
|
2015-09-28 18:39:16 +08:00
|
|
|
#include "str.hpp"
|
|
|
|
#include "version.hpp"
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-09 13:01:52 +08:00
|
|
|
#include <fuse.h>
|
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
#include <fstream>
|
2019-01-09 13:01:52 +08:00
|
|
|
#include <iomanip>
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2014-06-01 05:54:18 +08:00
|
|
|
using std::string;
|
|
|
|
using std::vector;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2015-09-28 18:39:16 +08:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
MERGERFS_OPT_HELP,
|
|
|
|
MERGERFS_OPT_VERSION
|
|
|
|
};
|
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
struct Data
|
|
|
|
{
|
|
|
|
Config *config;
|
|
|
|
vector<string> *errs;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
namespace l
|
|
|
|
{
|
|
|
|
static
|
|
|
|
int
|
|
|
|
calculate_thread_count(int threads_)
|
|
|
|
{
|
|
|
|
int tc;
|
|
|
|
|
|
|
|
if(threads_ > 0)
|
|
|
|
return threads_;
|
|
|
|
|
|
|
|
tc = hw::cpu::logical_core_count();
|
|
|
|
if(threads_ < 0)
|
|
|
|
tc /= -threads_;
|
|
|
|
if(tc == 0)
|
|
|
|
tc = 1;
|
|
|
|
|
|
|
|
return tc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void
|
|
|
|
read_config(Data *data_,
|
|
|
|
std::istream &is_)
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
std::string key;
|
|
|
|
std::string val;
|
|
|
|
std::string line;
|
|
|
|
|
|
|
|
rv = 0;
|
|
|
|
while(std::getline(is_,line,'\n'))
|
|
|
|
{
|
|
|
|
line = str::trim(line);
|
|
|
|
if(!line.empty() && (line[0] == '#'))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
str::splitkv(line,'=',&key,&val);
|
|
|
|
key = str::trim(key);
|
|
|
|
val = str::trim(val);
|
|
|
|
|
|
|
|
if(key.empty() || val.empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
rv = data_->config->set_raw(key,val);
|
|
|
|
switch(rv)
|
|
|
|
{
|
|
|
|
case -EINVAL:
|
|
|
|
data_->errs->push_back("invalid argument - " + line);
|
|
|
|
break;
|
|
|
|
case -ENOATTR:
|
|
|
|
data_->errs->push_back("unknown option - " + line);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void
|
|
|
|
read_config(Data *data_,
|
|
|
|
const std::string &filepath_)
|
|
|
|
{
|
|
|
|
std::ifstream is;
|
|
|
|
|
|
|
|
is.open(filepath_);
|
|
|
|
if(is.bad())
|
|
|
|
{
|
|
|
|
data_->errs->push_back("unable to open config - " + filepath_);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
l::read_config(data_,is);
|
2020-11-29 09:26:18 +08:00
|
|
|
if(!is.eof())
|
2020-09-11 09:58:23 +08:00
|
|
|
data_->errs->push_back("failure reading config file");
|
2019-09-24 22:27:46 +08:00
|
|
|
is.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-13 02:07:21 +08:00
|
|
|
|
2015-03-12 06:14:05 +08:00
|
|
|
static
|
|
|
|
void
|
2019-02-04 11:38:57 +08:00
|
|
|
set_option(fuse_args *args,
|
2015-03-12 06:14:05 +08:00
|
|
|
const std::string &option_)
|
|
|
|
{
|
|
|
|
|
2019-02-04 11:38:57 +08:00
|
|
|
fuse_opt_add_arg(args,"-o");
|
|
|
|
fuse_opt_add_arg(args,option_.c_str());
|
2015-03-12 06:14:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void
|
2019-02-04 11:38:57 +08:00
|
|
|
set_kv_option(fuse_args *args,
|
2015-03-12 06:14:05 +08:00
|
|
|
const std::string &key,
|
|
|
|
const std::string &value)
|
|
|
|
{
|
|
|
|
std::string option;
|
|
|
|
|
|
|
|
option = key + '=' + value;
|
|
|
|
|
|
|
|
set_option(args,option);
|
|
|
|
}
|
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
static
|
|
|
|
void
|
|
|
|
set_threads(fuse_args *args_,
|
|
|
|
Config *config_)
|
|
|
|
{
|
|
|
|
int threads;
|
|
|
|
|
|
|
|
threads = l::calculate_thread_count(config_->threads);
|
|
|
|
|
|
|
|
config_->threads = threads;
|
|
|
|
|
|
|
|
set_kv_option(args_,"threads",config_->threads.to_string());
|
|
|
|
}
|
|
|
|
|
2015-03-12 06:14:05 +08:00
|
|
|
static
|
|
|
|
void
|
2019-05-13 02:07:21 +08:00
|
|
|
set_fsname(fuse_args *args_,
|
|
|
|
Config *config_)
|
2015-03-12 06:14:05 +08:00
|
|
|
{
|
2019-09-24 22:27:46 +08:00
|
|
|
if(config_->fsname->empty())
|
2015-03-12 06:14:05 +08:00
|
|
|
{
|
2019-05-13 02:07:21 +08:00
|
|
|
vector<string> branches;
|
2015-03-12 06:14:05 +08:00
|
|
|
|
2019-05-13 02:07:21 +08:00
|
|
|
config_->branches.to_paths(branches);
|
2015-03-12 06:14:05 +08:00
|
|
|
|
2019-05-13 02:07:21 +08:00
|
|
|
if(branches.size() > 0)
|
|
|
|
config_->fsname = str::remove_common_prefix_and_join(branches,':');
|
2015-03-12 06:14:05 +08:00
|
|
|
}
|
2019-05-13 02:07:21 +08:00
|
|
|
|
|
|
|
set_kv_option(args_,"fsname",config_->fsname);
|
2015-03-12 06:14:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void
|
2019-02-04 11:38:57 +08:00
|
|
|
set_subtype(fuse_args *args)
|
2015-03-12 06:14:05 +08:00
|
|
|
{
|
|
|
|
set_kv_option(args,"subtype","mergerfs");
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void
|
2019-02-04 11:38:57 +08:00
|
|
|
set_default_options(fuse_args *args)
|
2015-03-12 06:14:05 +08:00
|
|
|
{
|
2015-09-15 10:11:52 +08:00
|
|
|
set_option(args,"default_permissions");
|
2015-03-12 06:14:05 +08:00
|
|
|
}
|
|
|
|
|
2019-05-31 06:59:18 +08:00
|
|
|
static
|
|
|
|
int
|
2019-09-24 22:27:46 +08:00
|
|
|
parse_and_process_kv_arg(Data *data_,
|
|
|
|
const std::string &key_,
|
|
|
|
const std::string &val_)
|
2019-05-31 06:59:18 +08:00
|
|
|
{
|
|
|
|
int rv;
|
2019-09-24 22:27:46 +08:00
|
|
|
std::string key(key_);
|
|
|
|
std::string val(val_);
|
|
|
|
|
|
|
|
rv = 0;
|
|
|
|
if(key == "config")
|
|
|
|
return (l::read_config(data_,val_),0);
|
|
|
|
ef(key == "attr_timeout")
|
|
|
|
key = "cache.attr";
|
|
|
|
ef(key == "entry_timeout")
|
|
|
|
key = "cache.entry";
|
|
|
|
ef(key == "negative_entry")
|
|
|
|
key = "cache.negative_entry";
|
|
|
|
ef(key == "direct_io" && val.empty())
|
|
|
|
val = "true";
|
|
|
|
ef(key == "kernel_cache" && val.empty())
|
|
|
|
val = "true";
|
|
|
|
ef(key == "auto_cache" && val.empty())
|
|
|
|
val = "true";
|
|
|
|
ef(key == "async_read" && val.empty())
|
|
|
|
val = "true";
|
|
|
|
ef(key == "sync_read" && val.empty())
|
|
|
|
{key = "async_read", val = "false";}
|
|
|
|
ef(key == "defaults")
|
|
|
|
return 0;
|
|
|
|
ef(key == "hard_remove")
|
|
|
|
return 0;
|
|
|
|
ef(key == "atomic_o_trunc")
|
|
|
|
return 0;
|
|
|
|
ef(key == "big_writes")
|
|
|
|
return 0;
|
|
|
|
ef(key == "cache.open")
|
|
|
|
return 0;
|
2019-05-24 11:22:36 +08:00
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
if(data_->config->has_key(key) == false)
|
2019-05-24 11:22:36 +08:00
|
|
|
return 1;
|
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
rv = data_->config->set_raw(key,val);
|
|
|
|
if(rv)
|
|
|
|
data_->errs->push_back("invalid argument - " + key_ + '=' + val_);
|
2018-10-08 10:28:58 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-02 22:23:56 +08:00
|
|
|
static
|
|
|
|
int
|
2019-09-24 22:27:46 +08:00
|
|
|
process_opt(Data *data_,
|
|
|
|
const std::string &arg_)
|
2018-11-02 22:23:56 +08:00
|
|
|
{
|
2019-09-24 22:27:46 +08:00
|
|
|
std::string key;
|
|
|
|
std::string val;
|
2018-11-02 22:23:56 +08:00
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
str::splitkv(arg_,'=',&key,&val);
|
2018-11-02 22:23:56 +08:00
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
return parse_and_process_kv_arg(data_,key,val);
|
2018-11-02 22:23:56 +08:00
|
|
|
}
|
|
|
|
|
2019-01-07 01:52:55 +08:00
|
|
|
static
|
|
|
|
int
|
2019-09-24 22:27:46 +08:00
|
|
|
process_branches(Data *data_,
|
|
|
|
const char *arg_)
|
2018-12-12 23:08:17 +08:00
|
|
|
{
|
|
|
|
int rv;
|
2019-09-24 22:27:46 +08:00
|
|
|
string arg;
|
2018-12-12 23:08:17 +08:00
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
arg = arg_;
|
|
|
|
rv = data_->config->set_raw("branches",arg);
|
|
|
|
if(rv)
|
|
|
|
data_->errs->push_back("unable to parse 'branches' - " + arg);
|
2018-12-12 23:08:17 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
int
|
2019-09-24 22:27:46 +08:00
|
|
|
process_mount(Data *data_,
|
|
|
|
const char *arg_)
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2015-03-12 06:14:05 +08:00
|
|
|
int rv;
|
2019-09-24 22:27:46 +08:00
|
|
|
string arg;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
arg = arg_;
|
|
|
|
rv = data_->config->set_raw("mount",arg);
|
|
|
|
if(rv)
|
|
|
|
data_->errs->push_back("unable to set 'mount' - " + arg);
|
2014-06-01 05:54:18 +08:00
|
|
|
|
2014-08-04 03:50:28 +08:00
|
|
|
return 1;
|
2014-06-01 05:54:18 +08:00
|
|
|
}
|
|
|
|
|
2015-09-28 18:39:16 +08:00
|
|
|
static
|
|
|
|
void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
std::cout <<
|
2019-05-24 11:22:36 +08:00
|
|
|
"Usage: mergerfs [options] <branches> <destpath>\n"
|
2015-09-28 18:39:16 +08:00
|
|
|
"\n"
|
|
|
|
" -o [opt,...] mount options\n"
|
|
|
|
" -h --help print help\n"
|
|
|
|
" -v --version print version\n"
|
|
|
|
"\n"
|
|
|
|
"mergerfs options:\n"
|
2019-05-24 11:22:36 +08:00
|
|
|
" <branches> ':' delimited list of directories. Supports\n"
|
2015-09-28 18:39:16 +08:00
|
|
|
" shell globbing (must be escaped in shell)\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o config=FILE Read options from file in key=val format\n"
|
|
|
|
" -o func.FUNC=POLICY Set function FUNC to policy POLICY\n"
|
|
|
|
" -o category.CAT=POLICY Set functions in category CAT to POLICY\n"
|
|
|
|
" -o fsname=STR Sets the name of the filesystem.\n"
|
|
|
|
" -o cache.open=INT 'open' policy cache timeout in seconds.\n"
|
2019-01-07 01:52:55 +08:00
|
|
|
" default = 0 (disabled)\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o cache.statfs=INT 'statfs' cache timeout in seconds. Used by\n"
|
2018-12-12 23:08:17 +08:00
|
|
|
" policies. default = 0 (disabled)\n"
|
2019-05-24 11:22:36 +08:00
|
|
|
" -o cache.files=libfuse|off|partial|full|auto-full\n"
|
|
|
|
" * libfuse: Use direct_io, kernel_cache, auto_cache\n"
|
|
|
|
" values directly\n"
|
|
|
|
" * off: Disable page caching\n"
|
|
|
|
" * partial: Clear page cache on file open\n"
|
|
|
|
" * full: Keep cache on file open\n"
|
|
|
|
" * auto-full: Keep cache if mtime & size not changed\n"
|
|
|
|
" default = libfuse\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o cache.writeback=BOOL\n"
|
2020-02-08 03:05:03 +08:00
|
|
|
" Enable kernel writeback caching (if supported)\n"
|
2020-07-20 19:01:33 +08:00
|
|
|
" cache.files must be enabled as well.\n"
|
2020-02-08 03:05:03 +08:00
|
|
|
" default = false\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o cache.symlinks=BOOL\n"
|
2019-05-24 11:22:36 +08:00
|
|
|
" Enable kernel caching of symlinks (if supported)\n"
|
|
|
|
" default = false\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o cache.readdir=BOOL\n"
|
2019-05-24 11:22:36 +08:00
|
|
|
" Enable kernel caching readdir (if supported)\n"
|
2019-05-22 11:23:26 +08:00
|
|
|
" default = false\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o cache.attr=INT File attribute cache timeout in seconds.\n"
|
2019-02-04 11:38:57 +08:00
|
|
|
" default = 1\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o cache.entry=INT File name lookup cache timeout in seconds.\n"
|
2019-02-04 11:38:57 +08:00
|
|
|
" default = 1\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o cache.negative_entry=INT\n"
|
2019-05-24 11:22:36 +08:00
|
|
|
" Negative file name lookup cache timeout in\n"
|
2019-02-04 11:38:57 +08:00
|
|
|
" seconds. default = 0\n"
|
2017-02-19 02:45:43 +08:00
|
|
|
" -o use_ino Have mergerfs generate inode values rather than\n"
|
|
|
|
" autogenerated by libfuse. Suggested.\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o inodecalc=passthrough|path-hash|devino-hash|hybrid-hash\n"
|
|
|
|
" Selects the inode calculation algorithm.\n"
|
|
|
|
" default = hybrid-hash\n"
|
|
|
|
" -o minfreespace=INT Minimum free space needed for certain policies.\n"
|
2018-10-01 07:47:44 +08:00
|
|
|
" default = 4G\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o moveonenospc=BOOL Try to move file to another drive when ENOSPC\n"
|
2018-10-01 07:47:44 +08:00
|
|
|
" on write. default = false\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o dropcacheonclose=BOOL\n"
|
2017-04-24 18:57:29 +08:00
|
|
|
" When a file is closed suggest to OS it drop\n"
|
2019-05-24 11:22:36 +08:00
|
|
|
" the file's cache. This is useful when using\n"
|
|
|
|
" 'cache.files'. default = false\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o symlinkify=BOOL Read-only files, after a timeout, will be turned\n"
|
2017-04-24 18:57:29 +08:00
|
|
|
" into symlinks. Read docs for limitations and\n"
|
2018-10-01 07:47:44 +08:00
|
|
|
" possible issues. default = false\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o symlinkify_timeout=INT\n"
|
2019-05-24 11:22:36 +08:00
|
|
|
" Timeout in seconds before files turn to symlinks.\n"
|
2018-10-01 07:47:44 +08:00
|
|
|
" default = 3600\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o nullrw=BOOL Disables reads and writes. For benchmarking.\n"
|
2018-10-03 02:22:37 +08:00
|
|
|
" default = false\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o ignorepponrename=BOOL\n"
|
2017-06-30 11:57:15 +08:00
|
|
|
" Ignore path preserving when performing renames\n"
|
2017-07-03 02:39:59 +08:00
|
|
|
" and links. default = false\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o link_cow=BOOL Delink/clone file on open to simulate CoW.\n"
|
2018-10-08 10:28:58 +08:00
|
|
|
" default = false\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o nfsopenhack=off|git|all\n"
|
|
|
|
" A workaround for exporting mergerfs over NFS\n"
|
|
|
|
" where there are issues with creating files for\n"
|
|
|
|
" write while setting the mode to read-only.\n"
|
|
|
|
" default = off\n"
|
|
|
|
" -o security_capability=BOOL\n"
|
2018-10-01 07:47:44 +08:00
|
|
|
" When disabled return ENOATTR when the xattr\n"
|
|
|
|
" security.capability is queried. default = true\n"
|
2018-11-20 12:30:39 +08:00
|
|
|
" -o xattr=passthrough|noattr|nosys\n"
|
2018-10-08 10:28:58 +08:00
|
|
|
" Runtime control of xattrs. By default xattr\n"
|
|
|
|
" requests will pass through to the underlying\n"
|
|
|
|
" filesystems. notattr will short circuit as if\n"
|
2018-11-20 12:30:39 +08:00
|
|
|
" nothing exists. nosys will respond as if not\n"
|
2018-10-08 10:28:58 +08:00
|
|
|
" supported or disabled. default = passthrough\n"
|
2018-11-02 22:23:56 +08:00
|
|
|
" -o statfs=base|full When set to 'base' statfs will use all branches\n"
|
|
|
|
" when performing statfs calculations. 'full' will\n"
|
|
|
|
" only include branches on which that path is\n"
|
|
|
|
" available. default = base\n"
|
|
|
|
" -o statfs_ignore=none|ro|nc\n"
|
|
|
|
" 'ro' will cause statfs calculations to ignore\n"
|
|
|
|
" available space for branches mounted or tagged\n"
|
|
|
|
" as 'read only' or 'no create'. 'nc' will ignore\n"
|
|
|
|
" available space for branches tagged as\n"
|
|
|
|
" 'no create'. default = none\n"
|
2020-07-31 01:54:29 +08:00
|
|
|
" -o posix_acl=BOOL Enable POSIX ACL support. default = false\n"
|
|
|
|
" -o async_read=BOOL If disabled or unavailable the kernel will\n"
|
2019-05-29 03:15:18 +08:00
|
|
|
" ensure there is at most one pending read \n"
|
|
|
|
" request per file and will attempt to order\n"
|
|
|
|
" requests by offset. default = true\n"
|
2015-09-28 18:39:16 +08:00
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
|
2014-05-13 00:41:46 +08:00
|
|
|
static
|
|
|
|
int
|
2019-09-24 22:27:46 +08:00
|
|
|
option_processor(void *data_,
|
|
|
|
const char *arg_,
|
|
|
|
int key_,
|
|
|
|
fuse_args *outargs_)
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2019-09-24 22:27:46 +08:00
|
|
|
Data *data = (Data*)data_;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
switch(key_)
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
|
|
|
case FUSE_OPT_KEY_OPT:
|
2019-09-24 22:27:46 +08:00
|
|
|
return process_opt(data,arg_);
|
2014-05-13 00:41:46 +08:00
|
|
|
|
|
|
|
case FUSE_OPT_KEY_NONOPT:
|
2020-08-21 06:47:04 +08:00
|
|
|
if(data->config->branches.vec.empty())
|
2019-09-24 22:27:46 +08:00
|
|
|
return process_branches(data,arg_);
|
|
|
|
else
|
|
|
|
return process_mount(data,arg_);
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2015-09-28 18:39:16 +08:00
|
|
|
case MERGERFS_OPT_HELP:
|
|
|
|
usage();
|
2020-09-11 09:58:23 +08:00
|
|
|
exit(0);
|
2015-09-28 18:39:16 +08:00
|
|
|
|
|
|
|
case MERGERFS_OPT_VERSION:
|
2018-03-10 09:48:36 +08:00
|
|
|
std::cout << "mergerfs version: "
|
|
|
|
<< (MERGERFS_VERSION[0] ? MERGERFS_VERSION : "unknown")
|
|
|
|
<< std::endl;
|
2020-09-11 09:58:23 +08:00
|
|
|
exit(0);
|
2015-09-28 18:39:16 +08:00
|
|
|
|
2014-05-13 00:41:46 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
return 0;
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
namespace options
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2019-01-25 20:03:46 +08:00
|
|
|
void
|
2019-09-24 22:27:46 +08:00
|
|
|
parse(fuse_args *args_,
|
|
|
|
Config *config_,
|
|
|
|
std::vector<std::string> *errs_)
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2019-09-24 22:27:46 +08:00
|
|
|
Data data;
|
2019-01-25 20:03:46 +08:00
|
|
|
const struct fuse_opt opts[] =
|
|
|
|
{
|
|
|
|
FUSE_OPT_KEY("-h",MERGERFS_OPT_HELP),
|
|
|
|
FUSE_OPT_KEY("--help",MERGERFS_OPT_HELP),
|
|
|
|
FUSE_OPT_KEY("-v",MERGERFS_OPT_VERSION),
|
|
|
|
FUSE_OPT_KEY("-V",MERGERFS_OPT_VERSION),
|
|
|
|
FUSE_OPT_KEY("--version",MERGERFS_OPT_VERSION),
|
|
|
|
{NULL,-1U,0}
|
|
|
|
};
|
|
|
|
|
2019-09-24 22:27:46 +08:00
|
|
|
data.config = config_;
|
|
|
|
data.errs = errs_;
|
2019-05-13 02:07:21 +08:00
|
|
|
fuse_opt_parse(args_,
|
2019-09-24 22:27:46 +08:00
|
|
|
&data,
|
2019-01-25 20:03:46 +08:00
|
|
|
opts,
|
|
|
|
::option_processor);
|
|
|
|
|
2020-09-11 09:58:23 +08:00
|
|
|
if(config_->branches.vec.empty())
|
|
|
|
errs_->push_back("branches not set");
|
|
|
|
if(config_->mount->empty())
|
|
|
|
errs_->push_back("mountpoint not set");
|
|
|
|
|
2019-05-13 02:07:21 +08:00
|
|
|
set_default_options(args_);
|
|
|
|
set_fsname(args_,config_);
|
|
|
|
set_subtype(args_);
|
2019-09-24 22:27:46 +08:00
|
|
|
set_threads(args_,config_);
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
}
|