ut0mem.c 17.7 KB
Newer Older
vasil's avatar
vasil committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*****************************************************************************

Copyright (c) 1994, 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

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

19 20
/********************************************************************//**
@file ut/ut0mem.c
osku's avatar
osku committed
21 22 23 24 25 26 27 28 29 30 31
Memory primitives

Created 5/11/1994 Heikki Tuuri
*************************************************************************/

#include "ut0mem.h"

#ifdef UNIV_NONINL
#include "ut0mem.ic"
#endif

32 33 34
#ifndef UNIV_HOTBACKUP
# include "os0thread.h"
# include "srv0srv.h"
osku's avatar
osku committed
35

36 37
#include <stdlib.h>

38
/** This struct is placed first in every allocated memory block */
osku's avatar
osku committed
39 40
typedef struct ut_mem_block_struct ut_mem_block_t;

41
/** The total amount of memory currently allocated from the operating
42 43 44 45
system with os_mem_alloc_large() or malloc().  Does not count malloc()
if srv_use_sys_malloc is set.  Protected by ut_list_mutex. */
UNIV_INTERN ulint		ut_total_allocated_memory	= 0;

46
/** Mutex protecting ut_total_allocated_memory and ut_mem_block_list */
47
UNIV_INTERN os_fast_mutex_t	ut_list_mutex;
osku's avatar
osku committed
48

49
/** Dynamically allocated memory block */
osku's avatar
osku committed
50
struct ut_mem_block_struct{
51
	UT_LIST_NODE_T(ut_mem_block_t) mem_block_list;
52 53 54
			/*!< mem block list node */
	ulint	size;	/*!< size of allocated memory */
	ulint	magic_n;/*!< magic number (UT_MEM_MAGIC_N) */
osku's avatar
osku committed
55 56
};

57 58
/** The value of ut_mem_block_struct::magic_n.  Used in detecting
memory corruption. */
osku's avatar
osku committed
59 60
#define UT_MEM_MAGIC_N	1601650166

61
/** List of all memory blocks allocated from the operating system
62
with malloc.  Protected by ut_list_mutex. */
63
static UT_LIST_BASE_NODE_T(ut_mem_block_t)   ut_mem_block_list;
osku's avatar
osku committed
64

65
/** Flag: has ut_mem_block_list been initialized? */
66
static ibool  ut_mem_block_list_inited = FALSE;
osku's avatar
osku committed
67

68 69
/** A dummy pointer for generating a null pointer exception in
ut_malloc_low() */
70
static ulint*	ut_mem_null_ptr	= NULL;
osku's avatar
osku committed
71

72
/**********************************************************************//**
osku's avatar
osku committed
73
Initializes the mem block list at database startup. */
74
UNIV_INTERN
osku's avatar
osku committed
75
void
76 77
ut_mem_init(void)
/*=============*/
osku's avatar
osku committed
78
{
79
	ut_a(!ut_mem_block_list_inited);
80 81
	os_fast_mutex_init(&ut_list_mutex);
	UT_LIST_INIT(ut_mem_block_list);
osku's avatar
osku committed
82 83
	ut_mem_block_list_inited = TRUE;
}
84
#endif /* !UNIV_HOTBACKUP */
osku's avatar
osku committed
85

86
/**********************************************************************//**
osku's avatar
osku committed
87
Allocates memory. Sets it also to zero if UNIV_SET_MEM_TO_ZERO is
88 89
defined and set_to_zero is TRUE.
@return	own: allocated memory */
90
UNIV_INTERN
osku's avatar
osku committed
91 92 93
void*
ut_malloc_low(
/*==========*/
94 95
	ulint	n,		/*!< in: number of bytes to allocate */
	ibool	set_to_zero,	/*!< in: TRUE if allocated memory should be
96 97
				set to zero if UNIV_SET_MEM_TO_ZERO is
				defined */
98
	ibool	assert_on_error)/*!< in: if TRUE, we crash mysqld if the
99
				memory cannot be allocated */
osku's avatar
osku committed
100
{
101
#ifndef UNIV_HOTBACKUP
102
	ulint	retry_count;
osku's avatar
osku committed
103 104
	void*	ret;

105
	if (UNIV_LIKELY(srv_use_sys_malloc)) {
106 107 108 109 110 111 112 113 114 115 116 117
		ret = malloc(n);
		ut_a(ret || !assert_on_error);

#ifdef UNIV_SET_MEM_TO_ZERO
		if (set_to_zero) {
			memset(ret, '\0', n);
			UNIV_MEM_ALLOC(ret, n);
		}
#endif
		return(ret);
	}

osku's avatar
osku committed
118
	ut_ad((sizeof(ut_mem_block_t) % 8) == 0); /* check alignment ok */
119
	ut_a(ut_mem_block_list_inited);
120 121

	retry_count = 0;
osku's avatar
osku committed
122 123 124 125 126 127 128 129 130 131
retry:
	os_fast_mutex_lock(&ut_list_mutex);

	ret = malloc(n + sizeof(ut_mem_block_t));

	if (ret == NULL && retry_count < 60) {
		if (retry_count == 0) {
			ut_print_timestamp(stderr);

			fprintf(stderr,
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
				"  InnoDB: Error: cannot allocate"
				" %lu bytes of\n"
				"InnoDB: memory with malloc!"
				" Total allocated memory\n"
				"InnoDB: by InnoDB %lu bytes."
				" Operating system errno: %lu\n"
				"InnoDB: Check if you should"
				" increase the swap file or\n"
				"InnoDB: ulimits of your operating system.\n"
				"InnoDB: On FreeBSD check you"
				" have compiled the OS with\n"
				"InnoDB: a big enough maximum process size.\n"
				"InnoDB: Note that in most 32-bit"
				" computers the process\n"
				"InnoDB: memory space is limited"
				" to 2 GB or 4 GB.\n"
				"InnoDB: We keep retrying"
				" the allocation for 60 seconds...\n",
				(ulong) n, (ulong) ut_total_allocated_memory,
osku's avatar
osku committed
151
#ifdef __WIN__
152
				(ulong) GetLastError()
osku's avatar
osku committed
153
#else
154
				(ulong) errno
osku's avatar
osku committed
155
#endif
156
				);
osku's avatar
osku committed
157 158 159 160 161 162 163 164
		}

		os_fast_mutex_unlock(&ut_list_mutex);

		/* Sleep for a second and retry the allocation; maybe this is
		just a temporary shortage of memory */

		os_thread_sleep(1000000);
165

osku's avatar
osku committed
166 167 168 169 170 171 172 173 174 175 176 177
		retry_count++;

		goto retry;
	}

	if (ret == NULL) {
		/* Flush stderr to make more probable that the error
		message gets in the error file before we generate a seg
		fault */

		fflush(stderr);

178
		os_fast_mutex_unlock(&ut_list_mutex);
osku's avatar
osku committed
179 180 181

		/* Make an intentional seg fault so that we get a stack
		trace */
182
		/* Intentional segfault on NetWare causes an abend. Avoid this
osku's avatar
osku committed
183
		by graceful exit handling in ut_a(). */
184
#if (!defined __NETWARE__)
osku's avatar
osku committed
185 186 187 188
		if (assert_on_error) {
			ut_print_timestamp(stderr);

			fprintf(stderr,
189 190 191
				"  InnoDB: We now intentionally"
				" generate a seg fault so that\n"
				"InnoDB: on Linux we get a stack trace.\n");
osku's avatar
osku committed
192 193 194 195 196 197 198 199

			if (*ut_mem_null_ptr) ut_mem_null_ptr = 0;
		} else {
			return(NULL);
		}
#else
		ut_a(0);
#endif
200
	}
osku's avatar
osku committed
201 202 203

	if (set_to_zero) {
#ifdef UNIV_SET_MEM_TO_ZERO
204
		memset(ret, '\0', n + sizeof(ut_mem_block_t));
osku's avatar
osku committed
205 206 207
#endif
	}

208 209
	UNIV_MEM_ALLOC(ret, n + sizeof(ut_mem_block_t));

osku's avatar
osku committed
210 211 212 213
	((ut_mem_block_t*)ret)->size = n + sizeof(ut_mem_block_t);
	((ut_mem_block_t*)ret)->magic_n = UT_MEM_MAGIC_N;

	ut_total_allocated_memory += n + sizeof(ut_mem_block_t);
214

osku's avatar
osku committed
215
	UT_LIST_ADD_FIRST(mem_block_list, ut_mem_block_list,
216
			  ((ut_mem_block_t*)ret));
osku's avatar
osku committed
217 218 219
	os_fast_mutex_unlock(&ut_list_mutex);

	return((void*)((byte*)ret + sizeof(ut_mem_block_t)));
220 221 222 223 224 225 226 227 228 229 230
#else /* !UNIV_HOTBACKUP */
	void*	ret = malloc(n);
	ut_a(ret || !assert_on_error);

# ifdef UNIV_SET_MEM_TO_ZERO
	if (set_to_zero) {
		memset(ret, '\0', n);
	}
# endif
	return(ret);
#endif /* !UNIV_HOTBACKUP */
osku's avatar
osku committed
231 232
}

233
/**********************************************************************//**
osku's avatar
osku committed
234
Allocates memory. Sets it also to zero if UNIV_SET_MEM_TO_ZERO is
235 236
defined.
@return	own: allocated memory */
237
UNIV_INTERN
osku's avatar
osku committed
238 239 240
void*
ut_malloc(
/*======*/
241
	ulint	n)	/*!< in: number of bytes to allocate */
osku's avatar
osku committed
242
{
243
#ifndef UNIV_HOTBACKUP
244
	return(ut_malloc_low(n, TRUE, TRUE));
245 246 247
#else /* !UNIV_HOTBACKUP */
	return(malloc(n));
#endif /* !UNIV_HOTBACKUP */
osku's avatar
osku committed
248 249
}

250
#ifndef UNIV_HOTBACKUP
251
/**********************************************************************//**
osku's avatar
osku committed
252 253
Tests if malloc of n bytes would succeed. ut_malloc() asserts if memory runs
out. It cannot be used if we want to return an error message. Prints to
254 255
stderr a message if fails.
@return	TRUE if succeeded */
256
UNIV_INTERN
osku's avatar
osku committed
257 258 259
ibool
ut_test_malloc(
/*===========*/
260
	ulint	n)	/*!< in: try to allocate this many bytes */
osku's avatar
osku committed
261 262 263 264 265 266 267 268
{
	void*	ret;

	ret = malloc(n);

	if (ret == NULL) {
		ut_print_timestamp(stderr);
		fprintf(stderr,
269 270 271 272 273 274 275 276 277 278 279 280 281 282
			"  InnoDB: Error: cannot allocate"
			" %lu bytes of memory for\n"
			"InnoDB: a BLOB with malloc! Total allocated memory\n"
			"InnoDB: by InnoDB %lu bytes."
			" Operating system errno: %d\n"
			"InnoDB: Check if you should increase"
			" the swap file or\n"
			"InnoDB: ulimits of your operating system.\n"
			"InnoDB: On FreeBSD check you have"
			" compiled the OS with\n"
			"InnoDB: a big enough maximum process size.\n",
			(ulong) n,
			(ulong) ut_total_allocated_memory,
			(int) errno);
osku's avatar
osku committed
283 284 285 286 287 288
		return(FALSE);
	}

	free(ret);

	return(TRUE);
289
}
290
#endif /* !UNIV_HOTBACKUP */
osku's avatar
osku committed
291

292
/**********************************************************************//**
osku's avatar
osku committed
293
Frees a memory block allocated with ut_malloc. */
294
UNIV_INTERN
osku's avatar
osku committed
295 296 297
void
ut_free(
/*====*/
298
	void* ptr)  /*!< in, own: memory block */
osku's avatar
osku committed
299
{
300
#ifndef UNIV_HOTBACKUP
301
	ut_mem_block_t* block;
osku's avatar
osku committed
302

303
	if (UNIV_LIKELY(srv_use_sys_malloc)) {
304 305 306 307
		free(ptr);
		return;
	}

osku's avatar
osku committed
308 309 310 311 312 313 314 315
	block = (ut_mem_block_t*)((byte*)ptr - sizeof(ut_mem_block_t));

	os_fast_mutex_lock(&ut_list_mutex);

	ut_a(block->magic_n == UT_MEM_MAGIC_N);
	ut_a(ut_total_allocated_memory >= block->size);

	ut_total_allocated_memory -= block->size;
316

osku's avatar
osku committed
317 318
	UT_LIST_REMOVE(mem_block_list, ut_mem_block_list, block);
	free(block);
319

osku's avatar
osku committed
320
	os_fast_mutex_unlock(&ut_list_mutex);
321 322 323
#else /* !UNIV_HOTBACKUP */
	free(ptr);
#endif /* !UNIV_HOTBACKUP */
osku's avatar
osku committed
324 325
}

326
#ifndef UNIV_HOTBACKUP
327
/**********************************************************************//**
osku's avatar
osku committed
328 329 330 331 332 333 334 335 336
Implements realloc. This is needed by /pars/lexyy.c. Otherwise, you should not
use this function because the allocation functions in mem0mem.h are the
recommended ones in InnoDB.

man realloc in Linux, 2004:

       realloc()  changes the size of the memory block pointed to
       by ptr to size bytes.  The contents will be  unchanged  to
       the minimum of the old and new sizes; newly allocated mem
337
       ory will be uninitialized.  If ptr is NULL,  the	 call  is
osku's avatar
osku committed
338
       equivalent  to malloc(size); if size is equal to zero, the
339 340
       call is equivalent to free(ptr).	 Unless ptr is	NULL,  it
       must  have  been	 returned by an earlier call to malloc(),
osku's avatar
osku committed
341 342 343 344 345 346 347
       calloc() or realloc().

RETURN VALUE
       realloc() returns a pointer to the newly allocated memory,
       which is suitably aligned for any kind of variable and may
       be different from ptr, or NULL if the  request  fails.  If
       size  was equal to 0, either NULL or a pointer suitable to
348 349
       be passed to free() is returned.	 If realloc()  fails  the
       original	 block	is  left  untouched  - it is not freed or
350 351
       moved.
@return	own: pointer to new mem block or NULL */
352
UNIV_INTERN
osku's avatar
osku committed
353 354 355
void*
ut_realloc(
/*=======*/
356 357
	void*	ptr,	/*!< in: pointer to old block or NULL */
	ulint	size)	/*!< in: desired size */
osku's avatar
osku committed
358
{
359
	ut_mem_block_t* block;
osku's avatar
osku committed
360 361 362 363
	ulint		old_size;
	ulint		min_size;
	void*		new_ptr;

364
	if (UNIV_LIKELY(srv_use_sys_malloc)) {
365 366 367
		return(realloc(ptr, size));
	}

osku's avatar
osku committed
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
	if (ptr == NULL) {

		return(ut_malloc(size));
	}

	if (size == 0) {
		ut_free(ptr);

		return(NULL);
	}

	block = (ut_mem_block_t*)((byte*)ptr - sizeof(ut_mem_block_t));

	ut_a(block->magic_n == UT_MEM_MAGIC_N);

	old_size = block->size - sizeof(ut_mem_block_t);

	if (size < old_size) {
		min_size = size;
	} else {
		min_size = old_size;
	}
390

osku's avatar
osku committed
391 392 393 394 395
	new_ptr = ut_malloc(size);

	if (new_ptr == NULL) {

		return(NULL);
396
	}
osku's avatar
osku committed
397 398 399 400 401 402

	/* Copy the old data from ptr */
	ut_memcpy(new_ptr, ptr, min_size);

	ut_free(ptr);

403
	return(new_ptr);
osku's avatar
osku committed
404 405
}

406
/**********************************************************************//**
osku's avatar
osku committed
407
Frees in shutdown all allocated memory not freed yet. */
408
UNIV_INTERN
osku's avatar
osku committed
409 410 411 412
void
ut_free_all_mem(void)
/*=================*/
{
413
	ut_mem_block_t* block;
osku's avatar
osku committed
414

415
	ut_a(ut_mem_block_list_inited);
416
	ut_mem_block_list_inited = FALSE;
417
	os_fast_mutex_free(&ut_list_mutex);
osku's avatar
osku committed
418 419 420 421 422 423 424

	while ((block = UT_LIST_GET_FIRST(ut_mem_block_list))) {

		ut_a(block->magic_n == UT_MEM_MAGIC_N);
		ut_a(ut_total_allocated_memory >= block->size);

		ut_total_allocated_memory -= block->size;
425 426 427

		UT_LIST_REMOVE(mem_block_list, ut_mem_block_list, block);
		free(block);
osku's avatar
osku committed
428
	}
429

osku's avatar
osku committed
430 431
	if (ut_total_allocated_memory != 0) {
		fprintf(stderr,
432 433 434
			"InnoDB: Warning: after shutdown"
			" total allocated memory is %lu\n",
			(ulong) ut_total_allocated_memory);
osku's avatar
osku committed
435 436
	}
}
437
#endif /* !UNIV_HOTBACKUP */
osku's avatar
osku committed
438

439
/**********************************************************************//**
osku's avatar
osku committed
440 441
Copies up to size - 1 characters from the NUL-terminated string src to
dst, NUL-terminating the result. Returns strlen(src), so truncation
442 443
occurred if the return value >= size.
@return	strlen(src) */
444
UNIV_INTERN
osku's avatar
osku committed
445 446 447
ulint
ut_strlcpy(
/*=======*/
448 449 450
	char*		dst,	/*!< in: destination buffer */
	const char*	src,	/*!< in: source buffer */
	ulint		size)	/*!< in: size of destination buffer */
osku's avatar
osku committed
451 452 453 454 455
{
	ulint	src_size = strlen(src);

	if (size != 0) {
		ulint	n = ut_min(src_size, size - 1);
456

osku's avatar
osku committed
457 458 459 460 461 462 463
		memcpy(dst, src, n);
		dst[n] = '\0';
	}

	return(src_size);
}

464
/**********************************************************************//**
osku's avatar
osku committed
465
Like ut_strlcpy, but if src doesn't fit in dst completely, copies the last
466 467
(size - 1) bytes of src, not the first.
@return	strlen(src) */
468
UNIV_INTERN
osku's avatar
osku committed
469 470 471
ulint
ut_strlcpy_rev(
/*===========*/
472 473 474
	char*		dst,	/*!< in: destination buffer */
	const char*	src,	/*!< in: source buffer */
	ulint		size)	/*!< in: size of destination buffer */
osku's avatar
osku committed
475 476 477 478 479 480 481 482 483 484 485 486
{
	ulint	src_size = strlen(src);

	if (size != 0) {
		ulint	n = ut_min(src_size, size - 1);

		memcpy(dst, src + src_size - n, n + 1);
	}

	return(src_size);
}

487
/**********************************************************************//**
488
Make a quoted copy of a NUL-terminated string.	Leading and trailing
osku's avatar
osku committed
489
quotes will not be included; only embedded quotes will be escaped.
490 491
See also ut_strlenq() and ut_memcpyq().
@return	pointer to end of dest */
492
UNIV_INTERN
osku's avatar
osku committed
493 494 495
char*
ut_strcpyq(
/*=======*/
496 497 498
	char*		dest,	/*!< in: output buffer */
	char		q,	/*!< in: the quote character */
	const char*	src)	/*!< in: null-terminated string */
osku's avatar
osku committed
499 500 501 502 503 504 505 506 507 508
{
	while (*src) {
		if ((*dest++ = *src++) == q) {
			*dest++ = q;
		}
	}

	return(dest);
}

509
/**********************************************************************//**
osku's avatar
osku committed
510 511
Make a quoted copy of a fixed-length string.  Leading and trailing
quotes will not be included; only embedded quotes will be escaped.
512 513
See also ut_strlenq() and ut_strcpyq().
@return	pointer to end of dest */
514
UNIV_INTERN
osku's avatar
osku committed
515 516 517
char*
ut_memcpyq(
/*=======*/
518 519 520 521
	char*		dest,	/*!< in: output buffer */
	char		q,	/*!< in: the quote character */
	const char*	src,	/*!< in: string to be quoted */
	ulint		len)	/*!< in: length of src */
osku's avatar
osku committed
522 523 524 525 526 527 528 529 530 531 532
{
	const char*	srcend = src + len;

	while (src < srcend) {
		if ((*dest++ = *src++) == q) {
			*dest++ = q;
		}
	}

	return(dest);
}
533

534
#ifndef UNIV_HOTBACKUP
535
/**********************************************************************//**
536
Return the number of times s2 occurs in s1. Overlapping instances of s2
537 538
are only counted once.
@return	the number of times s2 occurs in s1 */
539
UNIV_INTERN
540 541 542
ulint
ut_strcount(
/*========*/
543 544
	const char*	s1,	/*!< in: string to search in */
	const char*	s2)	/*!< in: string to search for */
545 546 547 548 549
{
	ulint	count = 0;
	ulint	len = strlen(s2);

	if (len == 0) {
550

551 552 553 554 555 556 557
		return(0);
	}

	for (;;) {
		s1 = strstr(s1, s2);

		if (!s1) {
558

559 560 561 562 563 564 565 566 567 568
			break;
		}

		count++;
		s1 += len;
	}

	return(count);
}

569
/**********************************************************************//**
570
Replace every occurrence of s1 in str with s2. Overlapping instances of s1
571 572
are only replaced once.
@return	own: modified string, must be freed with mem_free() */
573 574
UNIV_INTERN
char*
575 576
ut_strreplace(
/*==========*/
577 578 579
	const char*	str,	/*!< in: string to operate on */
	const char*	s1,	/*!< in: string to replace */
	const char*	s2)	/*!< in: string to replace s1 with */
580 581 582 583 584 585 586 587 588 589 590
{
	char*		new_str;
	char*		ptr;
	const char*	str_end;
	ulint		str_len = strlen(str);
	ulint		s1_len = strlen(s1);
	ulint		s2_len = strlen(s2);
	ulint		count = 0;
	int		len_delta = (int)s2_len - (int)s1_len;

	str_end = str + str_len;
591

592
	if (len_delta <= 0) {
593
		len_delta = 0;
594 595 596
	} else {
		count = ut_strcount(str, s1);
	}
597

598 599
	new_str = mem_alloc(str_len + count * len_delta + 1);
	ptr = new_str;
600

601 602
	while (str) {
		const char*	next = strstr(str, s1);
603

604 605 606 607 608 609 610 611
		if (!next) {
			next = str_end;
		}

		memcpy(ptr, str, next - str);
		ptr += next - str;

		if (next == str_end) {
612

613 614 615 616 617
			break;
		}

		memcpy(ptr, s2, s2_len);
		ptr += s2_len;
618

619 620 621 622
		str = next + s1_len;
	}

	*ptr = '\0';
623

624 625
	return(new_str);
}
vasil's avatar
vasil committed
626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705

#ifdef UNIV_COMPILE_TEST_FUNCS

void
test_ut_str_sql_format()
{
	char	buf[128];
	ulint	ret;

#define CALL_AND_TEST(str, str_len, buf, buf_size, ret_expected, buf_expected)\
	do {\
		ibool	ok = TRUE;\
		memset(buf, 'x', 10);\
		buf[10] = '\0';\
		fprintf(stderr, "TESTING \"%s\", %lu, %lu\n",\
			str, (ulint) str_len, (ulint) buf_size);\
		ret = ut_str_sql_format(str, str_len, buf, buf_size);\
		if (ret != ret_expected) {\
			fprintf(stderr, "expected ret %lu, got %lu\n",\
				(ulint) ret_expected, ret);\
			ok = FALSE;\
		}\
		if (strcmp((char*) buf, buf_expected) != 0) {\
			fprintf(stderr, "expected buf \"%s\", got \"%s\"\n",\
				buf_expected, buf);\
			ok = FALSE;\
		}\
		if (ok) {\
			fprintf(stderr, "OK: %lu, \"%s\"\n\n",\
				(ulint) ret, buf);\
		} else {\
			return;\
		}\
	} while (0)

	CALL_AND_TEST("abcd", 4, buf, 0, 0, "xxxxxxxxxx");

	CALL_AND_TEST("abcd", 4, buf, 1, 1, "");

	CALL_AND_TEST("abcd", 4, buf, 2, 1, "");

	CALL_AND_TEST("abcd", 0, buf, 3, 3, "''");
	CALL_AND_TEST("abcd", 1, buf, 3, 1, "");
	CALL_AND_TEST("abcd", 2, buf, 3, 1, "");
	CALL_AND_TEST("abcd", 3, buf, 3, 1, "");
	CALL_AND_TEST("abcd", 4, buf, 3, 1, "");

	CALL_AND_TEST("abcd", 0, buf, 4, 3, "''");
	CALL_AND_TEST("abcd", 1, buf, 4, 4, "'a'");
	CALL_AND_TEST("abcd", 2, buf, 4, 4, "'a'");
	CALL_AND_TEST("abcd", 3, buf, 4, 4, "'a'");
	CALL_AND_TEST("abcd", 4, buf, 4, 4, "'a'");
	CALL_AND_TEST("abcde", 5, buf, 4, 4, "'a'");
	CALL_AND_TEST("'", 1, buf, 4, 3, "''");
	CALL_AND_TEST("''", 2, buf, 4, 3, "''");
	CALL_AND_TEST("a'", 2, buf, 4, 4, "'a'");
	CALL_AND_TEST("'a", 2, buf, 4, 3, "''");
	CALL_AND_TEST("ab", 2, buf, 4, 4, "'a'");

	CALL_AND_TEST("abcdef", 0, buf, 5, 3, "''");
	CALL_AND_TEST("abcdef", 1, buf, 5, 4, "'a'");
	CALL_AND_TEST("abcdef", 2, buf, 5, 5, "'ab'");
	CALL_AND_TEST("abcdef", 3, buf, 5, 5, "'ab'");
	CALL_AND_TEST("abcdef", 4, buf, 5, 5, "'ab'");
	CALL_AND_TEST("abcdef", 5, buf, 5, 5, "'ab'");
	CALL_AND_TEST("abcdef", 6, buf, 5, 5, "'ab'");
	CALL_AND_TEST("'", 1, buf, 5, 5, "''''");
	CALL_AND_TEST("''", 2, buf, 5, 5, "''''");
	CALL_AND_TEST("a'", 2, buf, 5, 4, "'a'");
	CALL_AND_TEST("'a", 2, buf, 5, 5, "''''");
	CALL_AND_TEST("ab", 2, buf, 5, 5, "'ab'");
	CALL_AND_TEST("abc", 3, buf, 5, 5, "'ab'");

	CALL_AND_TEST("ab", 2, buf, 6, 5, "'ab'");

	CALL_AND_TEST("a'b'c", 5, buf, 32, 10, "'a''b''c'");
	CALL_AND_TEST("a'b'c'", 6, buf, 32, 12, "'a''b''c'''");
}

#endif /* UNIV_COMPILE_TEST_FUNCS */
706
#endif /* !UNIV_HOTBACKUP */