2016-04-14 13:24:32 +05:30
|
|
|
#include "base/container_of.h"
|
|
|
|
#include "block-cache/io_engine.h"
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sstream>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
using namespace bcache;
|
|
|
|
using namespace boost;
|
|
|
|
using namespace std;
|
|
|
|
|
2016-06-07 15:42:27 +05:30
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
unsigned const SECTOR_SHIFT = 9;
|
|
|
|
unsigned const PAGE_SIZE = 4096;
|
|
|
|
}
|
2016-04-14 13:24:32 +05:30
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
control_block_set::control_block_set(unsigned nr)
|
|
|
|
: cbs_(nr)
|
|
|
|
{
|
|
|
|
for (auto i = 0u; i < nr; i++)
|
|
|
|
free_cbs_.insert(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
iocb *
|
|
|
|
control_block_set::alloc(unsigned context)
|
|
|
|
{
|
|
|
|
if (free_cbs_.empty())
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
auto it = free_cbs_.begin();
|
|
|
|
|
|
|
|
cblock &cb = cbs_[*it];
|
|
|
|
cb.context = context;
|
|
|
|
free_cbs_.erase(it);
|
|
|
|
|
|
|
|
return &cb.cb;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
control_block_set::free(iocb *cb)
|
|
|
|
{
|
|
|
|
cblock *b = base::container_of(cb, &cblock::cb);
|
|
|
|
unsigned index = b - &cbs_[0];
|
|
|
|
free_cbs_.insert(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned
|
|
|
|
control_block_set::context(iocb *cb) const
|
|
|
|
{
|
|
|
|
cblock *b = base::container_of(cb, &cblock::cb);
|
|
|
|
return b->context;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
2016-06-07 15:42:27 +05:30
|
|
|
aio_engine::aio_engine(unsigned max_io)
|
2016-04-14 13:24:32 +05:30
|
|
|
: aio_context_(0),
|
2016-06-07 15:42:27 +05:30
|
|
|
cbs_(max_io)
|
2016-04-14 13:24:32 +05:30
|
|
|
{
|
|
|
|
int r = io_setup(max_io, &aio_context_);
|
|
|
|
if (r < 0)
|
|
|
|
throw runtime_error("io_setup failed");
|
|
|
|
}
|
|
|
|
|
2016-06-07 15:42:27 +05:30
|
|
|
aio_engine::~aio_engine()
|
2016-04-14 13:24:32 +05:30
|
|
|
{
|
|
|
|
io_destroy(aio_context_);
|
|
|
|
}
|
|
|
|
|
2016-06-07 15:42:27 +05:30
|
|
|
aio_engine::handle
|
2016-06-07 18:15:27 +05:30
|
|
|
aio_engine::open_file(std::string const &path, mode m, sharing s)
|
2016-04-14 13:24:32 +05:30
|
|
|
{
|
|
|
|
int flags = (m == READ_ONLY) ? O_RDONLY : O_RDWR;
|
2016-06-07 18:15:27 +05:30
|
|
|
if (s == EXCLUSIVE)
|
|
|
|
flags |= O_EXCL;
|
2016-04-14 13:24:32 +05:30
|
|
|
int fd = ::open(path.c_str(), O_DIRECT | flags);
|
|
|
|
if (fd < 0) {
|
|
|
|
ostringstream out;
|
|
|
|
out << "unable to open '" << path << "'";
|
|
|
|
throw runtime_error(out.str());
|
|
|
|
}
|
|
|
|
|
|
|
|
descriptors_.push_back(base::unique_fd(fd));
|
|
|
|
|
|
|
|
return static_cast<handle>(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-06-07 15:42:27 +05:30
|
|
|
aio_engine::close_file(handle h)
|
2016-04-14 13:24:32 +05:30
|
|
|
{
|
|
|
|
for (auto it = descriptors_.begin(); it != descriptors_.end(); ++it) {
|
|
|
|
unsigned it_h = it->get();
|
|
|
|
if (it_h == h) {
|
|
|
|
descriptors_.erase(it);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ostringstream out;
|
|
|
|
out << "unknown descriptor (" << h << ")";
|
|
|
|
throw runtime_error(out.str());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2016-06-07 15:42:27 +05:30
|
|
|
aio_engine::issue_io(handle h, dir d, sector_t b, sector_t e, void *data, unsigned context)
|
2016-04-14 13:24:32 +05:30
|
|
|
{
|
2016-06-07 15:42:27 +05:30
|
|
|
if (reinterpret_cast<uint64_t>(data) & (PAGE_SIZE - 1))
|
|
|
|
throw runtime_error("Data passed to issue_io must be page aligned\n");
|
|
|
|
|
|
|
|
iocb *cb;
|
|
|
|
|
|
|
|
cb = cbs_.alloc(context);
|
2016-04-14 13:24:32 +05:30
|
|
|
if (!cb)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
memset(cb, 0, sizeof(*cb));
|
2016-06-07 15:42:27 +05:30
|
|
|
|
2016-04-14 13:24:32 +05:30
|
|
|
cb->aio_fildes = static_cast<int>(h);
|
|
|
|
cb->u.c.buf = data;
|
|
|
|
cb->u.c.offset = b << SECTOR_SHIFT;
|
|
|
|
cb->u.c.nbytes = (e - b) << SECTOR_SHIFT;
|
|
|
|
cb->aio_lio_opcode = (d == READ) ? IO_CMD_PREAD : IO_CMD_PWRITE;
|
|
|
|
|
|
|
|
int r = io_submit(aio_context_, 1, &cb);
|
2016-06-07 15:42:27 +05:30
|
|
|
return r == 1;
|
2016-04-14 13:24:32 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<bool, io_engine::handle>
|
2016-06-07 15:42:27 +05:30
|
|
|
aio_engine::wait()
|
2016-04-14 13:24:32 +05:30
|
|
|
{
|
|
|
|
int r;
|
2016-06-07 15:42:27 +05:30
|
|
|
struct io_event event;
|
|
|
|
|
|
|
|
memset(&event, 0, sizeof(event));
|
2016-04-14 13:24:32 +05:30
|
|
|
|
2016-06-07 15:42:27 +05:30
|
|
|
r = io_getevents(aio_context_, 1, 1, &event, NULL);
|
2016-04-14 13:24:32 +05:30
|
|
|
if (r < 0) {
|
|
|
|
std::ostringstream out;
|
|
|
|
out << "io_getevents failed: " << r;
|
|
|
|
throw std::runtime_error(out.str());
|
|
|
|
}
|
|
|
|
|
2016-06-07 15:42:27 +05:30
|
|
|
iocb *cb = reinterpret_cast<iocb *>(event.obj);
|
|
|
|
unsigned context = cbs_.context(cb);
|
|
|
|
|
|
|
|
if (event.res == cb->u.c.nbytes) {
|
2016-04-14 13:24:32 +05:30
|
|
|
cbs_.free(cb);
|
2016-06-07 15:42:27 +05:30
|
|
|
return make_pair(true, context);
|
2016-04-14 13:24:32 +05:30
|
|
|
|
2016-06-07 15:42:27 +05:30
|
|
|
} else if (static_cast<int>(event.res) < 0) {
|
|
|
|
cbs_.free(cb);
|
|
|
|
return make_pair(false, context);
|
2016-04-14 13:24:32 +05:30
|
|
|
|
2016-06-07 15:42:27 +05:30
|
|
|
} else {
|
|
|
|
cbs_.free(cb);
|
|
|
|
return make_pair(false, context);
|
|
|
|
}
|
2016-04-14 13:24:32 +05:30
|
|
|
|
|
|
|
// shouldn't get here
|
|
|
|
return make_pair(false, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|