Commit 17b9e03f authored by Marko Mäkelä's avatar Marko Mäkelä

buf_zip_decompress(): Allow BUF_NO_CHECKSUM_MAGIC as the stamped checksum.

buf_page_get_gen(): Assert that buf_zip_decompress() succeeds.
Callers are not prepared for a NULL return value. (Bug #53248)
parent 712ed5e7
2010-05-03 The InnoDB Team
* buf0buf.c:
Fix Bug#53248 compressed tables page checksum mismatch after
re-enabling innodb_checksums
2010-04-28 The InnoDB Team 2010-04-28 The InnoDB Team
* log/log0recv.h, log/log0recv.c: * log/log0recv.h, log/log0recv.c:
......
...@@ -1820,14 +1820,14 @@ buf_zip_decompress( ...@@ -1820,14 +1820,14 @@ buf_zip_decompress(
buf_block_t* block, /*!< in/out: block */ buf_block_t* block, /*!< in/out: block */
ibool check) /*!< in: TRUE=verify the page checksum */ ibool check) /*!< in: TRUE=verify the page checksum */
{ {
const byte* frame = block->page.zip.data; const byte* frame = block->page.zip.data;
ulint stamp_checksum = mach_read_from_4(
frame + FIL_PAGE_SPACE_OR_CHKSUM);
ut_ad(buf_block_get_zip_size(block)); ut_ad(buf_block_get_zip_size(block));
ut_a(buf_block_get_space(block) != 0); ut_a(buf_block_get_space(block) != 0);
if (UNIV_LIKELY(check)) { if (UNIV_LIKELY(check && stamp_checksum != BUF_NO_CHECKSUM_MAGIC)) {
ulint stamp_checksum = mach_read_from_4(
frame + FIL_PAGE_SPACE_OR_CHKSUM);
ulint calc_checksum = page_zip_calc_checksum( ulint calc_checksum = page_zip_calc_checksum(
frame, page_zip_get_size(&block->page.zip)); frame, page_zip_get_size(&block->page.zip));
...@@ -2251,8 +2251,9 @@ buf_page_get_gen( ...@@ -2251,8 +2251,9 @@ buf_page_get_gen(
/* Decompress the page and apply buffered operations /* Decompress the page and apply buffered operations
while not holding buf_pool_mutex or block->mutex. */ while not holding buf_pool_mutex or block->mutex. */
success = buf_zip_decompress(block, srv_use_checksums); success = buf_zip_decompress(block, srv_use_checksums);
ut_a(success);
if (UNIV_LIKELY(success && !recv_no_ibuf_operations)) { if (UNIV_LIKELY(!recv_no_ibuf_operations)) {
ibuf_merge_or_delete_for_page(block, space, offset, ibuf_merge_or_delete_for_page(block, space, offset,
zip_size, TRUE); zip_size, TRUE);
} }
...@@ -2265,13 +2266,6 @@ buf_page_get_gen( ...@@ -2265,13 +2266,6 @@ buf_page_get_gen(
mutex_exit(&block->mutex); mutex_exit(&block->mutex);
buf_pool->n_pend_unzip--; buf_pool->n_pend_unzip--;
rw_lock_x_unlock(&block->lock); rw_lock_x_unlock(&block->lock);
if (UNIV_UNLIKELY(!success)) {
buf_pool_mutex_exit();
return(NULL);
}
break; break;
case BUF_BLOCK_ZIP_FREE: case BUF_BLOCK_ZIP_FREE:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment