mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
472 lines
18 KiB
C++
472 lines
18 KiB
C++
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
|
|
/*
|
|
COPYING CONDITIONS NOTICE:
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of version 2 of the GNU General Public License as
|
|
published by the Free Software Foundation, and provided that the
|
|
following conditions are met:
|
|
|
|
* Redistributions of source code must retain this COPYING
|
|
CONDITIONS NOTICE, the COPYRIGHT NOTICE (below), the
|
|
DISCLAIMER (below), the UNIVERSITY PATENT NOTICE (below), the
|
|
PATENT MARKING NOTICE (below), and the PATENT RIGHTS
|
|
GRANT (below).
|
|
|
|
* Redistributions in binary form must reproduce this COPYING
|
|
CONDITIONS NOTICE, the COPYRIGHT NOTICE (below), the
|
|
DISCLAIMER (below), the UNIVERSITY PATENT NOTICE (below), the
|
|
PATENT MARKING NOTICE (below), and the PATENT RIGHTS
|
|
GRANT (below) in the documentation and/or other materials
|
|
provided with the distribution.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301, USA.
|
|
|
|
COPYRIGHT NOTICE:
|
|
|
|
TokuDB, Tokutek Fractal Tree Indexing Library.
|
|
Copyright (C) 2007-2013 Tokutek, Inc.
|
|
|
|
DISCLAIMER:
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details.
|
|
|
|
UNIVERSITY PATENT NOTICE:
|
|
|
|
The technology is licensed by the Massachusetts Institute of
|
|
Technology, Rutgers State University of New Jersey, and the Research
|
|
Foundation of State University of New York at Stony Brook under
|
|
United States of America Serial No. 11/760379 and to the patents
|
|
and/or patent applications resulting from it.
|
|
|
|
PATENT MARKING NOTICE:
|
|
|
|
This software is covered by US Patent No. 8,185,551.
|
|
|
|
PATENT RIGHTS GRANT:
|
|
|
|
"THIS IMPLEMENTATION" means the copyrightable works distributed by
|
|
Tokutek as part of the Fractal Tree project.
|
|
|
|
"PATENT CLAIMS" means the claims of patents that are owned or
|
|
licensable by Tokutek, both currently or in the future; and that in
|
|
the absence of this license would be infringed by THIS
|
|
IMPLEMENTATION or by using or running THIS IMPLEMENTATION.
|
|
|
|
"PATENT CHALLENGE" shall mean a challenge to the validity,
|
|
patentability, enforceability and/or non-infringement of any of the
|
|
PATENT CLAIMS or otherwise opposing any of the PATENT CLAIMS.
|
|
|
|
Tokutek hereby grants to you, for the term and geographical scope of
|
|
the PATENT CLAIMS, a non-exclusive, no-charge, royalty-free,
|
|
irrevocable (except as stated in this section) patent license to
|
|
make, have made, use, offer to sell, sell, import, transfer, and
|
|
otherwise run, modify, and propagate the contents of THIS
|
|
IMPLEMENTATION, where such license applies only to the PATENT
|
|
CLAIMS. This grant does not include claims that would be infringed
|
|
only as a consequence of further modifications of THIS
|
|
IMPLEMENTATION. If you or your agent or licensee institute or order
|
|
or agree to the institution of patent litigation against any entity
|
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
THIS IMPLEMENTATION constitutes direct or contributory patent
|
|
infringement, or inducement of patent infringement, then any rights
|
|
granted to you under this License shall terminate as of the date
|
|
such litigation is filed. If you or your agent or exclusive
|
|
licensee institute or order or agree to the institution of a PATENT
|
|
CHALLENGE, then Tokutek may terminate any rights granted to you
|
|
under this License.
|
|
*/
|
|
|
|
#ident "Copyright (c) 2009-2013 Tokutek Inc. All rights reserved."
|
|
#ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11/760379 and to the patents and/or patent applications resulting from it."
|
|
#ident "$Id$"
|
|
|
|
#include "block_allocator.h"
|
|
#include <memory.h>
|
|
#include <toku_assert.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
// Here's a very simple implementation.
|
|
// It's not very fast at allocating or freeing.
|
|
// Previous implementation used next_fit, but now use first_fit since we are moving blocks around to reduce file size.
|
|
|
|
struct block_allocator {
|
|
uint64_t reserve_at_beginning; // How much to reserve at the beginning
|
|
uint64_t alignment; // Block alignment
|
|
uint64_t n_blocks; // How many blocks
|
|
uint64_t blocks_array_size; // How big is the blocks_array. Must be >= n_blocks.
|
|
struct block_allocator_blockpair *blocks_array; // These blocks are sorted by address.
|
|
uint64_t n_bytes_in_use; // including the reserve_at_beginning
|
|
};
|
|
|
|
void
|
|
block_allocator_validate (BLOCK_ALLOCATOR ba) {
|
|
uint64_t i;
|
|
uint64_t n_bytes_in_use = ba->reserve_at_beginning;
|
|
for (i=0; i<ba->n_blocks; i++) {
|
|
n_bytes_in_use += ba->blocks_array[i].size;
|
|
if (i>0) {
|
|
assert(ba->blocks_array[i].offset > ba->blocks_array[i-1].offset);
|
|
assert(ba->blocks_array[i].offset >= ba->blocks_array[i-1].offset + ba->blocks_array[i-1].size );
|
|
}
|
|
}
|
|
assert(n_bytes_in_use == ba->n_bytes_in_use);
|
|
}
|
|
|
|
#if 0
|
|
#define VALIDATE(b) block_allocator_validate(b)
|
|
#else
|
|
#define VALIDATE(b) ((void)0)
|
|
#endif
|
|
|
|
#if 0
|
|
void
|
|
block_allocator_print (BLOCK_ALLOCATOR ba) {
|
|
uint64_t i;
|
|
for (i=0; i<ba->n_blocks; i++) {
|
|
printf("%" PRId64 ":%" PRId64 " ", ba->blocks_array[i].offset, ba->blocks_array[i].size);
|
|
}
|
|
printf("\n");
|
|
VALIDATE(ba);
|
|
}
|
|
#endif
|
|
|
|
void
|
|
create_block_allocator (BLOCK_ALLOCATOR *ba, uint64_t reserve_at_beginning, uint64_t alignment) {
|
|
assert(alignment>=512 && 0==(alignment%512)); // the alignment must be at least 512 and aligned with 512 to make DIRECT_IO happy.
|
|
BLOCK_ALLOCATOR XMALLOC(result);
|
|
result->reserve_at_beginning = reserve_at_beginning;
|
|
result->alignment = alignment;
|
|
result->n_blocks = 0;
|
|
result->blocks_array_size = 1;
|
|
XMALLOC_N(result->blocks_array_size, result->blocks_array);
|
|
result->n_bytes_in_use = reserve_at_beginning;
|
|
*ba = result;
|
|
VALIDATE(result);
|
|
}
|
|
|
|
void
|
|
destroy_block_allocator (BLOCK_ALLOCATOR *bap) {
|
|
BLOCK_ALLOCATOR ba = *bap;
|
|
*bap = 0;
|
|
toku_free(ba->blocks_array);
|
|
toku_free(ba);
|
|
}
|
|
|
|
static void
|
|
grow_blocks_array_by (BLOCK_ALLOCATOR ba, uint64_t n_to_add) {
|
|
if (ba->n_blocks + n_to_add > ba->blocks_array_size) {
|
|
uint64_t new_size = ba->n_blocks + n_to_add;
|
|
uint64_t at_least = ba->blocks_array_size * 2;
|
|
if (at_least > new_size) {
|
|
new_size = at_least;
|
|
}
|
|
ba->blocks_array_size = new_size;
|
|
XREALLOC_N(ba->blocks_array_size, ba->blocks_array);
|
|
}
|
|
}
|
|
|
|
|
|
static void
|
|
grow_blocks_array (BLOCK_ALLOCATOR ba) {
|
|
grow_blocks_array_by(ba, 1);
|
|
}
|
|
|
|
void
|
|
block_allocator_merge_blockpairs_into (uint64_t d, struct block_allocator_blockpair dst[/*d*/],
|
|
uint64_t s, const struct block_allocator_blockpair src[/*s*/])
|
|
{
|
|
uint64_t tail = d+s;
|
|
while (d>0 && s>0) {
|
|
struct block_allocator_blockpair *dp = &dst[d-1];
|
|
struct block_allocator_blockpair const *sp = &src[s-1];
|
|
struct block_allocator_blockpair *tp = &dst[tail-1];
|
|
assert(tail>0);
|
|
if (dp->offset > sp->offset) {
|
|
*tp = *dp;
|
|
d--;
|
|
tail--;
|
|
} else {
|
|
*tp = *sp;
|
|
s--;
|
|
tail--;
|
|
}
|
|
}
|
|
while (d>0) {
|
|
struct block_allocator_blockpair *dp = &dst[d-1];
|
|
struct block_allocator_blockpair *tp = &dst[tail-1];
|
|
*tp = *dp;
|
|
d--;
|
|
tail--;
|
|
}
|
|
while (s>0) {
|
|
struct block_allocator_blockpair const *sp = &src[s-1];
|
|
struct block_allocator_blockpair *tp = &dst[tail-1];
|
|
*tp = *sp;
|
|
s--;
|
|
tail--;
|
|
}
|
|
}
|
|
|
|
static int
|
|
compare_blockpairs (const void *av, const void *bv) {
|
|
const struct block_allocator_blockpair *a = (const struct block_allocator_blockpair *) av;
|
|
const struct block_allocator_blockpair *b = (const struct block_allocator_blockpair *) bv;
|
|
if (a->offset < b->offset) return -1;
|
|
if (a->offset > b->offset) return +1;
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
block_allocator_alloc_blocks_at (BLOCK_ALLOCATOR ba, uint64_t n_blocks, struct block_allocator_blockpair pairs[/*n_blocks*/])
|
|
// See the documentation in block_allocator.h
|
|
{
|
|
VALIDATE(ba);
|
|
qsort(pairs, n_blocks, sizeof(*pairs), compare_blockpairs);
|
|
for (uint64_t i=0; i<n_blocks; i++) {
|
|
assert(pairs[i].offset >= ba->reserve_at_beginning);
|
|
assert(pairs[i].offset%ba->alignment == 0);
|
|
ba->n_bytes_in_use += pairs[i].size;
|
|
invariant(pairs[i].size > 0); //Allocator does not support size 0 blocks. See block_allocator_free_block.
|
|
}
|
|
grow_blocks_array_by(ba, n_blocks);
|
|
block_allocator_merge_blockpairs_into(ba->n_blocks, ba->blocks_array,
|
|
n_blocks, pairs);
|
|
ba->n_blocks += n_blocks;
|
|
VALIDATE(ba);
|
|
}
|
|
|
|
void
|
|
block_allocator_alloc_block_at (BLOCK_ALLOCATOR ba, uint64_t size, uint64_t offset) {
|
|
struct block_allocator_blockpair p = {.offset = offset, .size=size};
|
|
// Just do a linear search for the block.
|
|
// This data structure is a sorted array (no gaps or anything), so the search isn't really making this any slower than the insertion.
|
|
// To speed up the insertion when opening a file, we provide the block_allocator_alloc_blocks_at function.
|
|
block_allocator_alloc_blocks_at(ba, 1, &p);
|
|
}
|
|
|
|
static inline uint64_t
|
|
align (uint64_t value, BLOCK_ALLOCATOR ba)
|
|
// Effect: align a value by rounding up.
|
|
{
|
|
return ((value+ba->alignment-1)/ba->alignment)*ba->alignment;
|
|
}
|
|
|
|
void block_allocator_alloc_block(BLOCK_ALLOCATOR ba, uint64_t size, uint64_t *offset)
|
|
// Effect: Allocate a block. The resulting block must be aligned on the ba->alignment (which to make direct_io happy must be a positive multiple of 512).
|
|
{
|
|
invariant(size > 0); //Allocator does not support size 0 blocks. See block_allocator_free_block.
|
|
grow_blocks_array(ba);
|
|
ba->n_bytes_in_use += size;
|
|
if (ba->n_blocks==0) {
|
|
assert(ba->n_bytes_in_use == ba->reserve_at_beginning + size); // we know exactly how many are in use
|
|
ba->blocks_array[0].offset = align(ba->reserve_at_beginning, ba);
|
|
ba->blocks_array[0].size = size;
|
|
*offset = ba->blocks_array[0].offset;
|
|
ba->n_blocks++;
|
|
return;
|
|
}
|
|
// Implement first fit.
|
|
{
|
|
uint64_t end_of_reserve = align(ba->reserve_at_beginning, ba);
|
|
if (end_of_reserve + size <= ba->blocks_array[0].offset ) {
|
|
// Check to see if the space immediately after the reserve is big enough to hold the new block.
|
|
struct block_allocator_blockpair *bp = &ba->blocks_array[0];
|
|
memmove(bp+1, bp, (ba->n_blocks)*sizeof(*bp));
|
|
bp[0].offset = end_of_reserve;
|
|
bp[0].size = size;
|
|
ba->n_blocks++;
|
|
*offset = end_of_reserve;
|
|
VALIDATE(ba);
|
|
return;
|
|
}
|
|
}
|
|
for (uint64_t blocknum = 0; blocknum +1 < ba->n_blocks; blocknum ++) {
|
|
// Consider the space after blocknum
|
|
struct block_allocator_blockpair *bp = &ba->blocks_array[blocknum];
|
|
uint64_t this_offset = bp[0].offset;
|
|
uint64_t this_size = bp[0].size;
|
|
uint64_t answer_offset = align(this_offset + this_size, ba);
|
|
if (answer_offset + size > bp[1].offset) continue; // The block we want doesn't fit after this block.
|
|
// It fits, so allocate it here.
|
|
memmove(bp+2, bp+1, (ba->n_blocks - blocknum -1)*sizeof(*bp));
|
|
bp[1].offset = answer_offset;
|
|
bp[1].size = size;
|
|
ba->n_blocks++;
|
|
*offset = answer_offset;
|
|
VALIDATE(ba);
|
|
return;
|
|
}
|
|
// It didn't fit anywhere, so fit it on the end.
|
|
assert(ba->n_blocks < ba->blocks_array_size);
|
|
struct block_allocator_blockpair *bp = &ba->blocks_array[ba->n_blocks];
|
|
uint64_t answer_offset = align(bp[-1].offset+bp[-1].size, ba);
|
|
bp->offset = answer_offset;
|
|
bp->size = size;
|
|
ba->n_blocks++;
|
|
*offset = answer_offset;
|
|
VALIDATE(ba);
|
|
}
|
|
|
|
static int64_t
|
|
find_block (BLOCK_ALLOCATOR ba, uint64_t offset)
|
|
// Find the index in the blocks array that has a particular offset. Requires that the block exist.
|
|
// Use binary search so it runs fast.
|
|
{
|
|
VALIDATE(ba);
|
|
if (ba->n_blocks==1) {
|
|
assert(ba->blocks_array[0].offset == offset);
|
|
return 0;
|
|
}
|
|
uint64_t lo = 0;
|
|
uint64_t hi = ba->n_blocks;
|
|
while (1) {
|
|
assert(lo<hi); // otherwise no such block exists.
|
|
uint64_t mid = (lo+hi)/2;
|
|
uint64_t thisoff = ba->blocks_array[mid].offset;
|
|
//printf("lo=%" PRId64 " hi=%" PRId64 " mid=%" PRId64 " thisoff=%" PRId64 " offset=%" PRId64 "\n", lo, hi, mid, thisoff, offset);
|
|
if (thisoff < offset) {
|
|
lo = mid+1;
|
|
} else if (thisoff > offset) {
|
|
hi = mid;
|
|
} else {
|
|
return mid;
|
|
}
|
|
}
|
|
}
|
|
|
|
// To support 0-sized blocks, we need to include size as an input to this function.
|
|
// All 0-sized blocks at the same offset can be considered identical, but
|
|
// a 0-sized block can share offset with a non-zero sized block.
|
|
// The non-zero sized block is not exchangable with a zero sized block (or vice versa),
|
|
// so inserting 0-sized blocks can cause corruption here.
|
|
void
|
|
block_allocator_free_block (BLOCK_ALLOCATOR ba, uint64_t offset) {
|
|
VALIDATE(ba);
|
|
int64_t bn = find_block(ba, offset);
|
|
assert(bn>=0); // we require that there is a block with that offset. Might as well abort if no such block exists.
|
|
ba->n_bytes_in_use -= ba->blocks_array[bn].size;
|
|
memmove(&ba->blocks_array[bn], &ba->blocks_array[bn+1], (ba->n_blocks-bn-1) * sizeof(struct block_allocator_blockpair));
|
|
ba->n_blocks--;
|
|
VALIDATE(ba);
|
|
}
|
|
|
|
uint64_t
|
|
block_allocator_block_size (BLOCK_ALLOCATOR ba, uint64_t offset) {
|
|
int64_t bn = find_block(ba, offset);
|
|
assert(bn>=0); // we require that there is a block with that offset. Might as well abort if no such block exists.
|
|
return ba->blocks_array[bn].size;
|
|
}
|
|
|
|
uint64_t
|
|
block_allocator_allocated_limit (BLOCK_ALLOCATOR ba) {
|
|
if (ba->n_blocks==0) return ba->reserve_at_beginning;
|
|
else {
|
|
struct block_allocator_blockpair *last = &ba->blocks_array[ba->n_blocks-1];
|
|
return last->offset + last->size;
|
|
}
|
|
}
|
|
|
|
int
|
|
block_allocator_get_nth_block_in_layout_order (BLOCK_ALLOCATOR ba, uint64_t b, uint64_t *offset, uint64_t *size)
|
|
// Effect: Consider the blocks in sorted order. The reserved block at the beginning is number 0. The next one is number 1 and so forth.
|
|
// Return the offset and size of the block with that number.
|
|
// Return 0 if there is a block that big, return nonzero if b is too big.
|
|
{
|
|
if (b==0) {
|
|
*offset=0;
|
|
*size =ba->reserve_at_beginning;
|
|
return 0;
|
|
} else if (b > ba->n_blocks) {
|
|
return -1;
|
|
} else {
|
|
*offset=ba->blocks_array[b-1].offset;
|
|
*size =ba->blocks_array[b-1].size;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
void
|
|
block_allocator_get_unused_statistics(BLOCK_ALLOCATOR ba, TOKU_DB_FRAGMENTATION report) {
|
|
//Requires: report->file_size_bytes is filled in
|
|
//Requires: report->data_bytes is filled in
|
|
//Requires: report->checkpoint_bytes_additional is filled in
|
|
|
|
assert(ba->n_bytes_in_use == report->data_bytes + report->checkpoint_bytes_additional);
|
|
|
|
report->unused_bytes = 0;
|
|
report->unused_blocks = 0;
|
|
report->largest_unused_block = 0;
|
|
if (ba->n_blocks > 0) {
|
|
//Deal with space before block 0 and after reserve:
|
|
{
|
|
struct block_allocator_blockpair *bp = &ba->blocks_array[0];
|
|
assert(bp->offset >= align(ba->reserve_at_beginning, ba));
|
|
uint64_t free_space = bp->offset - align(ba->reserve_at_beginning, ba);
|
|
if (free_space > 0) {
|
|
report->unused_bytes += free_space;
|
|
report->unused_blocks++;
|
|
if (free_space > report->largest_unused_block) {
|
|
report->largest_unused_block = free_space;
|
|
}
|
|
}
|
|
}
|
|
|
|
//Deal with space between blocks:
|
|
for (uint64_t blocknum = 0; blocknum +1 < ba->n_blocks; blocknum ++) {
|
|
// Consider the space after blocknum
|
|
struct block_allocator_blockpair *bp = &ba->blocks_array[blocknum];
|
|
uint64_t this_offset = bp[0].offset;
|
|
uint64_t this_size = bp[0].size;
|
|
uint64_t end_of_this_block = align(this_offset+this_size, ba);
|
|
uint64_t next_offset = bp[1].offset;
|
|
uint64_t free_space = next_offset - end_of_this_block;
|
|
if (free_space > 0) {
|
|
report->unused_bytes += free_space;
|
|
report->unused_blocks++;
|
|
if (free_space > report->largest_unused_block) {
|
|
report->largest_unused_block = free_space;
|
|
}
|
|
}
|
|
}
|
|
|
|
//Deal with space after last block
|
|
{
|
|
struct block_allocator_blockpair *bp = &ba->blocks_array[ba->n_blocks-1];
|
|
uint64_t this_offset = bp[0].offset;
|
|
uint64_t this_size = bp[0].size;
|
|
uint64_t end_of_this_block = align(this_offset+this_size, ba);
|
|
if (end_of_this_block < report->file_size_bytes) {
|
|
uint64_t free_space = report->file_size_bytes - end_of_this_block;
|
|
assert(free_space > 0);
|
|
report->unused_bytes += free_space;
|
|
report->unused_blocks++;
|
|
if (free_space > report->largest_unused_block) {
|
|
report->largest_unused_block = free_space;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
//No blocks. Just the reserve.
|
|
uint64_t end_of_this_block = align(ba->reserve_at_beginning, ba);
|
|
if (end_of_this_block < report->file_size_bytes) {
|
|
uint64_t free_space = report->file_size_bytes - end_of_this_block;
|
|
assert(free_space > 0);
|
|
report->unused_bytes += free_space;
|
|
report->unused_blocks++;
|
|
if (free_space > report->largest_unused_block) {
|
|
report->largest_unused_block = free_space;
|
|
}
|
|
}
|
|
}
|
|
}
|