log0log.ic 10.7 KB
Newer Older
Vadim Tkachenko's avatar
Vadim Tkachenko committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*****************************************************************************

Copyright (c) 1995, 2009, Innobase Oy. All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; version 2 of the License.

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.

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., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA

*****************************************************************************/

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
19 20
/**************************************************//**
@file include/log0log.ic
21 22 23 24 25 26 27 28 29
Database log

Created 12/9/1995 Heikki Tuuri
*******************************************************/

#include "os0file.h"
#include "mach0data.h"
#include "mtr0mtr.h"

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
30
/******************************************************//**
31 32 33 34 35 36
Checks by parsing that the catenated log segment for a single mtr is
consistent. */
UNIV_INTERN
ibool
log_check_log_recs(
/*===============*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
37
	byte*		buf,		/*!< in: pointer to the start of
38 39
					the log segment in the
					log_sys->buf log buffer */
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
40 41
	ulint		len,		/*!< in: segment length in bytes */
	ib_uint64_t	buf_start_lsn);	/*!< in: buffer start lsn */
42

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
43 44 45
/************************************************************//**
Gets a log block flush bit.
@return	TRUE if this block was the first to be written in a log flush */
46 47 48 49
UNIV_INLINE
ibool
log_block_get_flush_bit(
/*====================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
50
	const byte*	log_block)	/*!< in: log block */
51 52 53 54 55 56 57 58 59 60
{
	if (LOG_BLOCK_FLUSH_BIT_MASK
	    & mach_read_from_4(log_block + LOG_BLOCK_HDR_NO)) {

		return(TRUE);
	}

	return(FALSE);
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
61
/************************************************************//**
62 63 64 65 66
Sets the log block flush bit. */
UNIV_INLINE
void
log_block_set_flush_bit(
/*====================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
67 68
	byte*	log_block,	/*!< in/out: log block */
	ibool	val)		/*!< in: value to set */
69 70 71 72 73 74 75 76 77 78 79 80 81 82
{
	ulint	field;

	field = mach_read_from_4(log_block + LOG_BLOCK_HDR_NO);

	if (val) {
		field = field | LOG_BLOCK_FLUSH_BIT_MASK;
	} else {
		field = field & ~LOG_BLOCK_FLUSH_BIT_MASK;
	}

	mach_write_to_4(log_block + LOG_BLOCK_HDR_NO, field);
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
83 84 85
/************************************************************//**
Gets a log block number stored in the header.
@return	log block number stored in the block header */
86 87 88 89
UNIV_INLINE
ulint
log_block_get_hdr_no(
/*=================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
90
	const byte*	log_block)	/*!< in: log block */
91 92 93 94 95
{
	return(~LOG_BLOCK_FLUSH_BIT_MASK
	       & mach_read_from_4(log_block + LOG_BLOCK_HDR_NO));
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
96
/************************************************************//**
97 98 99 100 101 102
Sets the log block number stored in the header; NOTE that this must be set
before the flush bit! */
UNIV_INLINE
void
log_block_set_hdr_no(
/*=================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
103 104
	byte*	log_block,	/*!< in/out: log block */
	ulint	n)		/*!< in: log block number: must be > 0 and
105 106 107 108 109 110 111 112
				< LOG_BLOCK_FLUSH_BIT_MASK */
{
	ut_ad(n > 0);
	ut_ad(n < LOG_BLOCK_FLUSH_BIT_MASK);

	mach_write_to_4(log_block + LOG_BLOCK_HDR_NO, n);
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
113 114 115
/************************************************************//**
Gets a log block data length.
@return	log block data length measured as a byte offset from the block start */
116 117 118 119
UNIV_INLINE
ulint
log_block_get_data_len(
/*===================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
120
	const byte*	log_block)	/*!< in: log block */
121 122 123 124
{
	return(mach_read_from_2(log_block + LOG_BLOCK_HDR_DATA_LEN));
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
125
/************************************************************//**
126 127 128 129 130
Sets the log block data length. */
UNIV_INLINE
void
log_block_set_data_len(
/*===================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
131 132
	byte*	log_block,	/*!< in/out: log block */
	ulint	len)		/*!< in: data length */
133 134 135 136
{
	mach_write_to_2(log_block + LOG_BLOCK_HDR_DATA_LEN, len);
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
137 138 139 140
/************************************************************//**
Gets a log block first mtr log record group offset.
@return first mtr log record group byte offset from the block start, 0
if none */
141 142 143 144
UNIV_INLINE
ulint
log_block_get_first_rec_group(
/*==========================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
145
	const byte*	log_block)	/*!< in: log block */
146 147 148 149
{
	return(mach_read_from_2(log_block + LOG_BLOCK_FIRST_REC_GROUP));
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
150
/************************************************************//**
151 152 153 154 155
Sets the log block first mtr log record group offset. */
UNIV_INLINE
void
log_block_set_first_rec_group(
/*==========================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
156 157
	byte*	log_block,	/*!< in/out: log block */
	ulint	offset)		/*!< in: offset, 0 if none */
158 159 160 161
{
	mach_write_to_2(log_block + LOG_BLOCK_FIRST_REC_GROUP, offset);
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
162 163 164
/************************************************************//**
Gets a log block checkpoint number field (4 lowest bytes).
@return	checkpoint no (4 lowest bytes) */
165 166 167 168
UNIV_INLINE
ulint
log_block_get_checkpoint_no(
/*========================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
169
	const byte*	log_block)	/*!< in: log block */
170 171 172 173
{
	return(mach_read_from_4(log_block + LOG_BLOCK_CHECKPOINT_NO));
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
174
/************************************************************//**
175 176 177 178 179
Sets a log block checkpoint number field (4 lowest bytes). */
UNIV_INLINE
void
log_block_set_checkpoint_no(
/*========================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
180 181
	byte*		log_block,	/*!< in/out: log block */
	ib_uint64_t	no)		/*!< in: checkpoint no */
182 183 184 185
{
	mach_write_to_4(log_block + LOG_BLOCK_CHECKPOINT_NO, (ulint) no);
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
186 187 188
/************************************************************//**
Converts a lsn to a log block number.
@return	log block number, it is > 0 and <= 1G */
189 190 191 192
UNIV_INLINE
ulint
log_block_convert_lsn_to_no(
/*========================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
193
	ib_uint64_t	lsn)	/*!< in: lsn of a byte within the block */
194 195 196 197
{
	return(((ulint) (lsn / OS_FILE_LOG_BLOCK_SIZE) & 0x3FFFFFFFUL) + 1);
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
198 199 200
/************************************************************//**
Calculates the checksum for a log block.
@return	checksum */
201 202 203 204
UNIV_INLINE
ulint
log_block_calc_checksum(
/*====================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
205
	const byte*	block)	/*!< in: log block */
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
{
	ulint	sum;
	ulint	sh;
	ulint	i;

	sum = 1;
	sh = 0;

	for (i = 0; i < OS_FILE_LOG_BLOCK_SIZE - LOG_BLOCK_TRL_SIZE; i++) {
		ulint	b = (ulint) block[i];
		sum &= 0x7FFFFFFFUL;
		sum += b;
		sum += b << sh;
		sh++;
		if (sh > 24) {
			sh = 0;
		}
	}

	return(sum);
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
228 229 230
/************************************************************//**
Gets a log block checksum field value.
@return	checksum */
231 232 233 234
UNIV_INLINE
ulint
log_block_get_checksum(
/*===================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
235
	const byte*	log_block)	/*!< in: log block */
236 237 238 239 240
{
	return(mach_read_from_4(log_block + OS_FILE_LOG_BLOCK_SIZE
				- LOG_BLOCK_CHECKSUM));
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
241
/************************************************************//**
242 243 244 245 246
Sets a log block checksum field value. */
UNIV_INLINE
void
log_block_set_checksum(
/*===================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
247 248
	byte*	log_block,	/*!< in/out: log block */
	ulint	checksum)	/*!< in: checksum */
249 250 251 252 253 254
{
	mach_write_to_4(log_block + OS_FILE_LOG_BLOCK_SIZE
			- LOG_BLOCK_CHECKSUM,
			checksum);
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
255
/************************************************************//**
256 257 258 259 260
Initializes a log block in the log buffer. */
UNIV_INLINE
void
log_block_init(
/*===========*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
261 262
	byte*		log_block,	/*!< in: pointer to the log buffer */
	ib_uint64_t	lsn)		/*!< in: lsn within the log block */
263 264 265 266 267 268 269 270 271 272 273 274 275
{
	ulint	no;

	ut_ad(mutex_own(&(log_sys->mutex)));

	no = log_block_convert_lsn_to_no(lsn);

	log_block_set_hdr_no(log_block, no);

	log_block_set_data_len(log_block, LOG_BLOCK_HDR_SIZE);
	log_block_set_first_rec_group(log_block, 0);
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
276
/************************************************************//**
277 278 279 280 281 282
Initializes a log block in the log buffer in the old format, where there
was no checksum yet. */
UNIV_INLINE
void
log_block_init_in_old_format(
/*=========================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
283 284
	byte*		log_block,	/*!< in: pointer to the log buffer */
	ib_uint64_t	lsn)		/*!< in: lsn within the log block */
285 286 287 288 289 290 291 292 293 294 295 296 297 298
{
	ulint	no;

	ut_ad(mutex_own(&(log_sys->mutex)));

	no = log_block_convert_lsn_to_no(lsn);

	log_block_set_hdr_no(log_block, no);
	mach_write_to_4(log_block + OS_FILE_LOG_BLOCK_SIZE
			- LOG_BLOCK_CHECKSUM, no);
	log_block_set_data_len(log_block, LOG_BLOCK_HDR_SIZE);
	log_block_set_first_rec_group(log_block, 0);
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
299 300
#ifndef UNIV_HOTBACKUP
/************************************************************//**
301
Writes to the log the string given. The log must be released with
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
302 303
log_release.
@return	end lsn of the log record, zero if did not succeed */
304 305 306 307
UNIV_INLINE
ib_uint64_t
log_reserve_and_write_fast(
/*=======================*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
308 309 310 311
	byte*		str,	/*!< in: string */
	ulint		len,	/*!< in: string length */
	ib_uint64_t*	start_lsn,/*!< out: start lsn of the log record */
	ibool*		success)/*!< out: TRUE if success */
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
{
	log_t*		log	= log_sys;
	ulint		data_len;
	ib_uint64_t	lsn;

	*success = TRUE;

	mutex_enter(&(log->mutex));

	data_len = len + log->buf_free % OS_FILE_LOG_BLOCK_SIZE;

	if (data_len >= OS_FILE_LOG_BLOCK_SIZE - LOG_BLOCK_TRL_SIZE) {

		/* The string does not fit within the current log block
		or the log block would become full */

		*success = FALSE;

		mutex_exit(&(log->mutex));

		return(0);
	}

	*start_lsn = log->lsn;

	ut_memcpy(log->buf + log->buf_free, str, len);

	log_block_set_data_len((byte*) ut_align_down(log->buf + log->buf_free,
						     OS_FILE_LOG_BLOCK_SIZE),
			       data_len);
#ifdef UNIV_LOG_DEBUG
	log->old_buf_free = log->buf_free;
	log->old_lsn = log->lsn;
#endif
	log->buf_free += len;

	ut_ad(log->buf_free <= log->buf_size);

	lsn = log->lsn += len;

#ifdef UNIV_LOG_DEBUG
	log_check_log_recs(log->buf + log->old_buf_free,
			   log->buf_free - log->old_buf_free, log->old_lsn);
#endif
	return(lsn);
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
359
/***********************************************************************//**
360 361 362 363 364 365 366 367 368
Releases the log mutex. */
UNIV_INLINE
void
log_release(void)
/*=============*/
{
	mutex_exit(&(log_sys->mutex));
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
369 370 371
/************************************************************//**
Gets the current lsn.
@return	current lsn */
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
UNIV_INLINE
ib_uint64_t
log_get_lsn(void)
/*=============*/
{
	ib_uint64_t	lsn;

	mutex_enter(&(log_sys->mutex));

	lsn = log_sys->lsn;

	mutex_exit(&(log_sys->mutex));

	return(lsn);
}

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
388 389 390 391 392 393 394 395 396 397 398 399 400
/****************************************************************
Gets the log group capacity. It is OK to read the value without
holding log_sys->mutex because it is constant.
@return	log group capacity */
UNIV_INLINE
ulint
log_get_capacity(void)
/*==================*/
{
	return(log_sys->log_group_capacity);
}

/***********************************************************************//**
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
Checks if there is need for a log buffer flush or a new checkpoint, and does
this if yes. Any database operation should call this when it has modified
more than about 4 pages. NOTE that this function may only be called when the
OS thread owns no synchronization objects except the dictionary mutex. */
UNIV_INLINE
void
log_free_check(void)
/*================*/
{
	/* ut_ad(sync_thread_levels_empty()); */

	if (log_sys->check_flush_or_checkpoint) {

		log_check_margins();
	}
}
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
417
#endif /* !UNIV_HOTBACKUP */