vitastor/blockstore.cpp

252 lines
7.1 KiB
C++
Raw Normal View History

#include "blockstore.h"
2019-11-01 02:47:57 +03:00
2019-11-05 02:43:21 +03:00
blockstore::blockstore(spp::sparse_hash_map<std::string, std::string> & config, ring_loop_t *ringloop)
2019-11-01 02:47:57 +03:00
{
2019-11-05 02:43:21 +03:00
this->ringloop = ringloop;
ring_consumer.loop = [this]() { loop(); };
ringloop->register_consumer(ring_consumer);
initialized = 0;
block_order = strtoull(config["block_size_order"].c_str(), NULL, 10);
if (block_order == 0)
{
block_order = DEFAULT_ORDER;
}
block_size = 1 << block_order;
if (block_size <= 1 || block_size >= MAX_BLOCK_SIZE)
2019-11-01 02:47:57 +03:00
{
throw std::runtime_error("Bad block size");
2019-10-31 13:49:46 +03:00
}
zero_object = (uint8_t*)memalign(DISK_ALIGNMENT, block_size);
data_fd = meta_fd = journal.fd = -1;
try
2019-10-31 13:49:46 +03:00
{
open_data(config);
open_meta(config);
open_journal(config);
calc_lengths(config);
data_alloc = allocator_create(block_count);
if (!data_alloc)
throw std::bad_alloc();
2019-10-31 13:49:46 +03:00
}
catch (std::exception & e)
2019-10-31 13:49:46 +03:00
{
if (data_fd >= 0)
close(data_fd);
if (meta_fd >= 0 && meta_fd != data_fd)
close(meta_fd);
if (journal.fd >= 0 && journal.fd != meta_fd)
close(journal.fd);
throw;
2019-10-31 13:49:46 +03:00
}
int flusher_count = strtoull(config["flusher_count"].c_str(), NULL, 10);
2019-11-13 17:45:37 +03:00
if (!flusher_count)
flusher_count = 32;
flusher = new journal_flusher_t(flusher_count, this);
}
2019-10-31 13:49:46 +03:00
blockstore::~blockstore()
{
2019-11-13 17:45:37 +03:00
delete flusher;
free(zero_object);
2019-11-18 14:08:11 +03:00
ringloop->unregister_consumer(ring_consumer);
if (data_fd >= 0)
close(data_fd);
if (meta_fd >= 0 && meta_fd != data_fd)
close(meta_fd);
if (journal.fd >= 0 && journal.fd != meta_fd)
close(journal.fd);
free(journal.sector_buf);
free(journal.sector_info);
}
2019-11-18 02:36:53 +03:00
bool blockstore::is_started()
{
return initialized == 10;
}
2019-11-05 02:43:21 +03:00
// main event loop - produce requests
void blockstore::loop()
2019-11-05 02:12:04 +03:00
{
2019-11-05 02:43:21 +03:00
if (initialized != 10)
2019-11-05 02:12:04 +03:00
{
2019-11-05 02:43:21 +03:00
// read metadata, then journal
if (initialized == 0)
{
metadata_init_reader = new blockstore_init_meta(this);
initialized = 1;
2019-11-17 22:28:48 +03:00
printf("reading blockstore metadata\n");
2019-11-05 02:43:21 +03:00
}
2019-11-17 22:28:48 +03:00
if (initialized == 1)
2019-11-05 02:12:04 +03:00
{
2019-11-05 02:43:21 +03:00
int res = metadata_init_reader->loop();
if (!res)
2019-11-05 02:12:04 +03:00
{
2019-11-05 02:43:21 +03:00
delete metadata_init_reader;
metadata_init_reader = NULL;
journal_init_reader = new blockstore_init_journal(this);
initialized = 2;
2019-11-17 22:28:48 +03:00
printf("reading blockstore journal\n");
2019-11-05 02:12:04 +03:00
}
2019-11-05 02:43:21 +03:00
}
2019-11-17 22:28:48 +03:00
if (initialized == 2)
2019-11-05 02:43:21 +03:00
{
int res = journal_init_reader->loop();
if (!res)
2019-11-05 02:12:04 +03:00
{
2019-11-05 02:43:21 +03:00
delete journal_init_reader;
journal_init_reader = NULL;
initialized = 10;
2019-11-17 22:28:48 +03:00
printf("journal read\n");
2019-11-05 02:12:04 +03:00
}
}
}
2019-11-05 02:43:21 +03:00
else
{
// try to submit ops
2019-11-10 12:46:58 +03:00
auto cur_sync = in_progress_syncs.begin();
while (cur_sync != in_progress_syncs.end())
{
continue_sync(*cur_sync++);
}
auto cur = submit_queue.begin();
2019-11-08 14:10:24 +03:00
bool has_writes = false;
while (cur != submit_queue.end())
{
auto op_ptr = cur;
auto op = *(cur++);
if (op->wait_for)
2019-11-08 02:16:31 +03:00
{
check_wait(op);
if (op->wait_for == WAIT_SQE)
break;
else if (op->wait_for)
continue;
2019-11-08 02:16:31 +03:00
}
unsigned ring_space = io_uring_sq_space_left(&ringloop->ring);
unsigned prev_sqe_pos = ringloop->ring.sq.sqe_tail;
2019-11-08 19:54:31 +03:00
int dequeue_op = 0;
2019-11-10 13:26:56 +03:00
if ((op->flags & OP_TYPE_MASK) == OP_READ)
{
2019-11-08 19:54:31 +03:00
dequeue_op = dequeue_read(op);
}
else if ((op->flags & OP_TYPE_MASK) == OP_WRITE ||
(op->flags & OP_TYPE_MASK) == OP_DELETE)
2019-11-07 02:24:12 +03:00
{
2019-11-08 14:10:24 +03:00
has_writes = true;
2019-11-08 19:54:31 +03:00
dequeue_op = dequeue_write(op);
2019-11-07 02:24:12 +03:00
}
else if ((op->flags & OP_TYPE_MASK) == OP_SYNC)
2019-11-07 02:24:12 +03:00
{
// wait for all small writes to be submitted
// wait for all big writes to complete, submit data device fsync
// wait for the data device fsync to complete, then submit journal writes for big writes
// then submit an fsync operation
2019-11-08 14:10:24 +03:00
if (has_writes)
{
// Can't submit SYNC before previous writes
continue;
}
2019-11-08 19:54:31 +03:00
dequeue_op = dequeue_sync(op);
}
else if ((op->flags & OP_TYPE_MASK) == OP_STABLE)
{
dequeue_op = dequeue_stable(op);
2019-11-08 19:54:31 +03:00
}
if (dequeue_op)
{
submit_queue.erase(op_ptr);
}
else
{
ringloop->ring.sq.sqe_tail = prev_sqe_pos;
2019-11-08 19:54:31 +03:00
if (op->wait_for == WAIT_SQE)
2019-11-08 14:10:24 +03:00
{
2019-11-08 19:54:31 +03:00
op->wait_detail = 1 + ring_space;
2019-11-08 14:10:24 +03:00
// ring is full, stop submission
break;
}
2019-11-07 02:24:12 +03:00
}
}
flusher->loop();
int ret = ringloop->submit();
if (ret < 0)
{
throw std::runtime_error(std::string("io_uring_submit: ") + strerror(-ret));
}
}
}
2019-11-11 21:22:28 +03:00
bool blockstore::stop()
{
return false;
}
void blockstore::check_wait(blockstore_operation *op)
{
if (op->wait_for == WAIT_SQE)
{
if (io_uring_sq_space_left(&ringloop->ring) < op->wait_detail)
{
// stop submission if there's still no free space
return;
}
op->wait_for = 0;
}
else if (op->wait_for == WAIT_IN_FLIGHT)
{
auto dirty_it = dirty_db.find((obj_ver_id){
.oid = op->oid,
.version = op->wait_detail,
});
if (dirty_it != dirty_db.end() && IS_IN_FLIGHT(dirty_it->second.state))
{
// do not submit
return;
}
op->wait_for = 0;
}
else if (op->wait_for == WAIT_JOURNAL)
{
if (journal.used_start < op->wait_detail)
{
// do not submit
return;
}
op->wait_for = 0;
}
else if (op->wait_for == WAIT_JOURNAL_BUFFER)
{
if (journal.sector_info[((journal.cur_sector + 1) % journal.sector_count)].usage_count > 0)
{
// do not submit
return;
}
op->wait_for = 0;
}
else
{
throw std::runtime_error("BUG: op->wait_for value is unexpected");
}
}
int blockstore::enqueue_op(blockstore_operation *op)
{
2019-11-07 02:24:12 +03:00
if (op->offset >= block_size || op->len >= block_size-op->offset ||
(op->len % DISK_ALIGNMENT) ||
(op->flags & OP_TYPE_MASK) < OP_READ || (op->flags & OP_TYPE_MASK) > OP_DELETE)
{
2019-11-07 02:24:12 +03:00
// Basic verification not passed
return -EINVAL;
}
2019-11-08 02:16:31 +03:00
op->wait_for = 0;
op->sync_state = 0;
op->pending_ops = 0;
submit_queue.push_back(op);
if ((op->flags & OP_TYPE_MASK) == OP_WRITE)
{
2019-11-10 13:27:59 +03:00
enqueue_write(op);
2019-11-05 02:43:21 +03:00
}
2019-11-18 14:08:11 +03:00
ringloop->wakeup(ring_consumer);
return 0;
2019-11-05 02:12:04 +03:00
}