2014-06-11 05:00:22 +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 <string>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fuse.h>
|
|
|
|
|
|
|
|
#include "config.hpp"
|
|
|
|
#include "fileinfo.hpp"
|
|
|
|
#include "write.hpp"
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
static
|
|
|
|
int
|
|
|
|
_write_buf_controlfile(const string controlfile,
|
2014-06-26 03:17:26 +08:00
|
|
|
struct fuse_bufvec &src,
|
|
|
|
struct fuse_file_info &fi)
|
2014-06-11 05:00:22 +08:00
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
size_t size;
|
|
|
|
struct fuse_bufvec dst;
|
|
|
|
|
2014-06-26 03:17:26 +08:00
|
|
|
size = fuse_buf_size(&src);
|
2014-06-11 05:00:22 +08:00
|
|
|
dst = FUSE_BUFVEC_INIT(size);
|
|
|
|
dst.buf->mem = malloc(size);
|
|
|
|
|
2014-06-26 03:17:26 +08:00
|
|
|
rv = fuse_buf_copy(&dst,&src,(fuse_buf_copy_flags)0);
|
2014-06-11 05:00:22 +08:00
|
|
|
if(rv < 0)
|
|
|
|
{
|
|
|
|
free(dst.buf->mem);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = mergerfs::write::write(controlfile.c_str(),
|
|
|
|
(const char*)dst.buf->mem,
|
|
|
|
size,
|
|
|
|
0,
|
2014-06-26 03:17:26 +08:00
|
|
|
&fi);
|
2014-06-11 05:00:22 +08:00
|
|
|
free(dst.buf->mem);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
int
|
|
|
|
_write_buf(const int fd,
|
2014-06-26 03:17:26 +08:00
|
|
|
struct fuse_bufvec &src,
|
2014-06-11 05:00:22 +08:00
|
|
|
const off_t offset)
|
|
|
|
{
|
2014-06-26 03:17:26 +08:00
|
|
|
size_t size = fuse_buf_size(&src);
|
|
|
|
struct fuse_bufvec dst = FUSE_BUFVEC_INIT(size);
|
2014-06-11 05:00:22 +08:00
|
|
|
const fuse_buf_copy_flags cpflags =
|
|
|
|
(fuse_buf_copy_flags)(FUSE_BUF_SPLICE_MOVE|FUSE_BUF_SPLICE_NONBLOCK);
|
|
|
|
|
2014-06-26 03:17:26 +08:00
|
|
|
dst.buf->flags = (fuse_buf_flags)(FUSE_BUF_IS_FD|FUSE_BUF_FD_SEEK);
|
|
|
|
dst.buf->fd = fd;
|
|
|
|
dst.buf->pos = offset;
|
2014-06-11 05:00:22 +08:00
|
|
|
|
2014-06-26 03:17:26 +08:00
|
|
|
return fuse_buf_copy(&dst,&src,cpflags);
|
2014-06-11 05:00:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace mergerfs
|
|
|
|
{
|
|
|
|
namespace write_buf
|
|
|
|
{
|
|
|
|
int
|
|
|
|
write_buf(const char *fusepath,
|
2014-06-26 03:17:26 +08:00
|
|
|
struct fuse_bufvec *src,
|
2014-06-11 05:00:22 +08:00
|
|
|
off_t offset,
|
|
|
|
struct fuse_file_info *fi)
|
|
|
|
{
|
2014-06-18 07:12:09 +08:00
|
|
|
const config::Config &config = config::get();
|
2014-06-11 05:00:22 +08:00
|
|
|
|
|
|
|
if(fusepath == config.controlfile)
|
|
|
|
return _write_buf_controlfile(config.controlfile,
|
2014-06-26 03:17:26 +08:00
|
|
|
*src,
|
|
|
|
*fi);
|
2014-06-11 05:00:22 +08:00
|
|
|
|
|
|
|
return _write_buf(((FileInfo*)fi->fh)->fd,
|
2014-06-26 03:17:26 +08:00
|
|
|
*src,
|
2014-06-11 05:00:22 +08:00
|
|
|
offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|