1
/*****************************************************************************
3
Copyright (c) 1996, 2010, Innobase Oy. All Rights Reserved.
4
Copyright (c) 2008, Google Inc.
5
Copyright (c) 2009, Percona Inc.
7
Portions of this file contain modifications contributed and copyrighted by
8
Google, Inc. Those modifications are gratefully acknowledged and are described
9
briefly in the InnoDB documentation. The contributions by Google are
10
incorporated with their permission, and subject to the conditions contained in
11
the file COPYING.Google.
13
Portions of this file contain modifications contributed and copyrighted
14
by Percona Inc.. Those modifications are
15
gratefully acknowledged and are described briefly in the InnoDB
16
documentation. The contributions by Percona Inc. are incorporated with
17
their permission, and subject to the conditions contained in the file
20
This program is free software; you can redistribute it and/or modify it under
21
the terms of the GNU General Public License as published by the Free Software
22
Foundation; version 2 of the License.
24
This program is distributed in the hope that it will be useful, but WITHOUT
25
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
26
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
28
You should have received a copy of the GNU General Public License along with
29
this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
30
St, Fifth Floor, Boston, MA 02110-1301 USA
32
*****************************************************************************/
34
/********************************************************************//**
36
Starts the InnoDB database server
38
Created 2/16/1996 Heikki Tuuri
39
*************************************************************************/
43
#include "data0data.h"
44
#include "data0type.h"
45
#include "dict0dict.h"
48
#include "os0thread.h"
55
#include "page0page.h"
62
#include "ibuf0ibuf.h"
63
#include "srv0start.h"
65
#ifndef UNIV_HOTBACKUP
67
# include "sync0sync.h"
70
# include "dict0boot.h"
71
# include "dict0load.h"
73
# include "usr0sess.h"
74
# include "lock0lock.h"
75
# include "trx0roll.h"
76
# include "trx0purge.h"
77
# include "lock0lock.h"
78
# include "pars0pars.h"
81
# include "dict0crea.h"
86
# include "row0mysql.h"
87
# include "btr0pcur.h"
89
# include "os0sync.h" /* for INNODB_RW_LOCKS_USE_ATOMICS */
90
# include "zlib.h" /* for ZLIB_VERSION */
95
/** Log sequence number immediately after startup */
96
UNIV_INTERN ib_uint64_t srv_start_lsn;
97
/** Log sequence number at shutdown */
98
UNIV_INTERN ib_uint64_t srv_shutdown_lsn;
100
#ifdef HAVE_DARWIN_THREADS
101
# include <sys/utsname.h>
102
/** TRUE if the F_FULLFSYNC option is available */
103
UNIV_INTERN ibool srv_have_fullfsync = FALSE;
106
/** TRUE if a raw partition is in use */
107
UNIV_INTERN ibool srv_start_raw_disk_in_use = FALSE;
109
/** TRUE if the server is being started, before rolling back any
110
incomplete transactions */
111
UNIV_INTERN ibool srv_startup_is_before_trx_rollback_phase = FALSE;
112
/** TRUE if the server is being started */
113
UNIV_INTERN ibool srv_is_being_started = FALSE;
114
/** TRUE if the server was successfully started */
115
UNIV_INTERN ibool srv_was_started = FALSE;
116
/** TRUE if innobase_start_or_create_for_mysql() has been called */
117
static ibool srv_start_has_been_called = FALSE;
119
/** At a shutdown this value climbs from SRV_SHUTDOWN_NONE to
120
SRV_SHUTDOWN_CLEANUP and then to SRV_SHUTDOWN_LAST_PHASE, and so on */
121
UNIV_INTERN enum srv_shutdown_state srv_shutdown_state = SRV_SHUTDOWN_NONE;
123
/** Files comprising the system tablespace */
124
static os_file_t files[1000];
126
/** io_handler_thread parameters for thread identification */
127
static ulint n[SRV_MAX_N_IO_THREADS + 6];
128
/** io_handler_thread identifiers */
129
static os_thread_id_t thread_ids[SRV_MAX_N_IO_THREADS + 6];
131
/** We use this mutex to test the return value of pthread_mutex_trylock
132
on successful locking. HP-UX does NOT return 0, though Linux et al do. */
133
static os_fast_mutex_t srv_os_test_mutex;
135
/** Name of srv_monitor_file */
136
static char* srv_monitor_file_name;
137
#endif /* !UNIV_HOTBACKUP */
140
#define SRV_N_PENDING_IOS_PER_THREAD OS_AIO_N_PENDING_IOS_PER_THREAD
141
#define SRV_MAX_N_PENDING_SYNC_IOS 100
143
#ifdef UNIV_PFS_THREAD
144
/* Keys to register InnoDB threads with performance schema */
145
UNIV_INTERN mysql_pfs_key_t io_handler_thread_key;
146
UNIV_INTERN mysql_pfs_key_t srv_lock_timeout_thread_key;
147
UNIV_INTERN mysql_pfs_key_t srv_error_monitor_thread_key;
148
UNIV_INTERN mysql_pfs_key_t srv_monitor_thread_key;
149
UNIV_INTERN mysql_pfs_key_t srv_master_thread_key;
150
#endif /* UNIV_PFS_THREAD */
152
/*********************************************************************//**
153
Convert a numeric string that optionally ends in G or M, to a number
154
containing megabytes.
155
@return next character in string */
160
char* str, /*!< in: string containing a quantity in bytes */
161
ulint* megs) /*!< out: the number in megabytes */
166
size = strtoul(str, &endp, 10);
186
/*********************************************************************//**
187
Reads the data files and their sizes from a character string given in
189
@return TRUE if ok, FALSE on parse error */
192
srv_parse_data_file_paths_and_sizes(
193
/*================================*/
194
char* str) /*!< in/out: the data file path string */
201
srv_auto_extend_last_data_file = FALSE;
202
srv_last_file_size_max = 0;
203
srv_data_file_names = NULL;
204
srv_data_file_sizes = NULL;
205
srv_data_file_is_raw_partition = NULL;
209
/* First calculate the number of data files and check syntax:
210
path:size[M | G];path:size[M | G]... . Note that a Windows path may
211
contain a drive name and a ':'. */
213
while (*str != '\0') {
216
while ((*str != ':' && *str != '\0')
218
&& (*(str + 1) == '\\' || *(str + 1) == '/'
219
|| *(str + 1) == ':'))) {
229
str = srv_parse_megabytes(str, &size);
231
if (0 == strncmp(str, ":autoextend",
232
(sizeof ":autoextend") - 1)) {
234
str += (sizeof ":autoextend") - 1;
236
if (0 == strncmp(str, ":max:",
237
(sizeof ":max:") - 1)) {
239
str += (sizeof ":max:") - 1;
241
str = srv_parse_megabytes(str, &size);
253
&& *(str + 2) == 'w') {
257
if (*str == 'r' && *(str + 1) == 'a' && *(str + 2) == 'w') {
269
} else if (*str != '\0') {
276
/* If innodb_data_file_path was defined it must contain
277
at least one data file definition */
282
srv_data_file_names = malloc(i * sizeof *srv_data_file_names);
283
srv_data_file_sizes = malloc(i * sizeof *srv_data_file_sizes);
284
srv_data_file_is_raw_partition = malloc(
285
i * sizeof *srv_data_file_is_raw_partition);
287
srv_n_data_files = i;
289
/* Then store the actual values to our arrays */
294
while (*str != '\0') {
297
/* Note that we must step over the ':' in a Windows path;
298
a Windows path normally looks like C:\ibdata\ibdata1:1G, but
299
a Windows raw partition may have a specification like
300
\\.\C::1Gnewraw or \\.\PHYSICALDRIVE2:1Gnewraw */
302
while ((*str != ':' && *str != '\0')
304
&& (*(str + 1) == '\\' || *(str + 1) == '/'
305
|| *(str + 1) == ':'))) {
310
/* Make path a null-terminated string */
315
str = srv_parse_megabytes(str, &size);
317
srv_data_file_names[i] = path;
318
srv_data_file_sizes[i] = size;
320
if (0 == strncmp(str, ":autoextend",
321
(sizeof ":autoextend") - 1)) {
323
srv_auto_extend_last_data_file = TRUE;
325
str += (sizeof ":autoextend") - 1;
327
if (0 == strncmp(str, ":max:",
328
(sizeof ":max:") - 1)) {
330
str += (sizeof ":max:") - 1;
332
str = srv_parse_megabytes(
333
str, &srv_last_file_size_max);
342
(srv_data_file_is_raw_partition)[i] = 0;
347
&& *(str + 2) == 'w') {
349
(srv_data_file_is_raw_partition)[i] = SRV_NEW_RAW;
352
if (*str == 'r' && *(str + 1) == 'a' && *(str + 2) == 'w') {
355
if ((srv_data_file_is_raw_partition)[i] == 0) {
356
(srv_data_file_is_raw_partition)[i] = SRV_OLD_RAW;
370
/*********************************************************************//**
371
Reads log group home directories from a character string given in
373
@return TRUE if ok, FALSE on parse error */
376
srv_parse_log_group_home_dirs(
377
/*==========================*/
378
char* str) /*!< in/out: character string */
384
srv_log_group_home_dirs = NULL;
388
/* First calculate the number of directories and check syntax:
391
while (*str != '\0') {
394
while (*str != ';' && *str != '\0') {
402
} else if (*str != '\0') {
409
/* If innodb_log_group_home_dir was defined it must
410
contain exactly one path definition under current MySQL */
415
srv_log_group_home_dirs = malloc(i * sizeof *srv_log_group_home_dirs);
417
/* Then store the actual values to our array */
422
while (*str != '\0') {
425
while (*str != ';' && *str != '\0') {
434
srv_log_group_home_dirs[i] = path;
442
/*********************************************************************//**
443
Frees the memory allocated by srv_parse_data_file_paths_and_sizes()
444
and srv_parse_log_group_home_dirs(). */
447
srv_free_paths_and_sizes(void)
448
/*==========================*/
450
free(srv_data_file_names);
451
srv_data_file_names = NULL;
452
free(srv_data_file_sizes);
453
srv_data_file_sizes = NULL;
454
free(srv_data_file_is_raw_partition);
455
srv_data_file_is_raw_partition = NULL;
456
free(srv_log_group_home_dirs);
457
srv_log_group_home_dirs = NULL;
460
#ifndef UNIV_HOTBACKUP
461
/********************************************************************//**
462
I/o-handler thread function.
463
@return OS_THREAD_DUMMY_RETURN */
468
void* arg) /*!< in: pointer to the number of the segment in
473
segment = *((ulint*)arg);
475
#ifdef UNIV_DEBUG_THREAD_CREATION
476
fprintf(stderr, "Io handler thread %lu starts, id %lu\n", segment,
477
os_thread_pf(os_thread_get_curr_id()));
480
#ifdef UNIV_PFS_THREAD
481
pfs_register_thread(io_handler_thread_key);
482
#endif /* UNIV_PFS_THREAD */
484
while (srv_shutdown_state != SRV_SHUTDOWN_EXIT_THREADS) {
485
fil_aio_wait(segment);
488
/* We count the number of threads in os_thread_exit(). A created
489
thread should always use that to exit and not use return() to exit.
490
The thread actually never comes here because it is exited in an
494
#endif /* !UNIV_HOTBACKUP */
497
#define SRV_PATH_SEPARATOR '\\'
499
#define SRV_PATH_SEPARATOR '/'
502
/*********************************************************************//**
503
Normalizes a directory path for Windows: converts slashes to backslashes. */
506
srv_normalize_path_for_win(
507
/*=======================*/
508
char* str __attribute__((unused))) /*!< in/out: null-terminated
512
for (; *str; str++) {
521
#ifndef UNIV_HOTBACKUP
522
/*********************************************************************//**
523
Calculates the low 32 bits when a file size which is given as a number
524
database pages is converted to the number of bytes.
525
@return low 32 bytes of file size when expressed in bytes */
530
ulint file_size) /*!< in: file size in database pages */
532
return(0xFFFFFFFFUL & (file_size << UNIV_PAGE_SIZE_SHIFT));
535
/*********************************************************************//**
536
Calculates the high 32 bits when a file size which is given as a number
537
database pages is converted to the number of bytes.
538
@return high 32 bytes of file size when expressed in bytes */
543
ulint file_size) /*!< in: file size in database pages */
545
return(file_size >> (32 - UNIV_PAGE_SIZE_SHIFT));
548
/*********************************************************************//**
549
Creates or opens the log files and closes them.
550
@return DB_SUCCESS or error code */
553
open_or_create_log_file(
554
/*====================*/
555
ibool create_new_db, /*!< in: TRUE if we should create a
557
ibool* log_file_created, /*!< out: TRUE if new log file
559
ibool log_file_has_been_opened,/*!< in: TRUE if a log file has been
560
opened before: then it is an error
561
to try to create another log file */
562
ulint k, /*!< in: log group number */
563
ulint i) /*!< in: log file number in group */
571
UT_NOT_USED(create_new_db);
573
*log_file_created = FALSE;
575
srv_normalize_path_for_win(srv_log_group_home_dirs[k]);
577
dirnamelen = strlen(srv_log_group_home_dirs[k]);
578
ut_a(dirnamelen < (sizeof name) - 10 - sizeof "ib_logfile");
579
memcpy(name, srv_log_group_home_dirs[k], dirnamelen);
581
/* Add a path separator if needed. */
582
if (dirnamelen && name[dirnamelen - 1] != SRV_PATH_SEPARATOR) {
583
name[dirnamelen++] = SRV_PATH_SEPARATOR;
586
sprintf(name + dirnamelen, "%s%lu", "ib_logfile", (ulong) i);
588
files[i] = os_file_create(innodb_file_log_key, name,
589
OS_FILE_CREATE, OS_FILE_NORMAL,
592
if (os_file_get_last_error(FALSE) != OS_FILE_ALREADY_EXISTS
594
/* AIX 5.1 after security patch ML7 may have errno set
595
to 0 here, which causes our function to return 100;
596
work around that AIX problem */
597
&& os_file_get_last_error(FALSE) != 100
601
"InnoDB: Error in creating"
602
" or opening %s\n", name);
607
files[i] = os_file_create(innodb_file_log_key, name,
608
OS_FILE_OPEN, OS_FILE_AIO,
612
"InnoDB: Error in opening %s\n", name);
617
ret = os_file_get_size(files[i], &size, &size_high);
620
if (size != srv_calc_low32(srv_log_file_size)
621
|| size_high != srv_calc_high32(srv_log_file_size)) {
624
"InnoDB: Error: log file %s is"
625
" of different size %lu %lu bytes\n"
626
"InnoDB: than specified in the .cnf"
627
" file %lu %lu bytes!\n",
628
name, (ulong) size_high, (ulong) size,
629
(ulong) srv_calc_high32(srv_log_file_size),
630
(ulong) srv_calc_low32(srv_log_file_size));
635
*log_file_created = TRUE;
637
ut_print_timestamp(stderr);
640
" InnoDB: Log file %s did not exist:"
641
" new to be created\n",
643
if (log_file_has_been_opened) {
648
fprintf(stderr, "InnoDB: Setting log file %s size to %lu MB\n",
649
name, (ulong) srv_log_file_size
650
>> (20 - UNIV_PAGE_SIZE_SHIFT));
653
"InnoDB: Database physically writes the file"
656
ret = os_file_set_size(name, files[i],
657
srv_calc_low32(srv_log_file_size),
658
srv_calc_high32(srv_log_file_size));
661
"InnoDB: Error in creating %s:"
662
" probably out of disk space\n",
669
ret = os_file_close(files[i]);
673
/* Create in memory the file space object
674
which is for this log group */
676
fil_space_create(name,
677
2 * k + SRV_LOG_SPACE_FIRST_ID, 0, FIL_LOG);
680
ut_a(fil_validate());
682
fil_node_create(name, srv_log_file_size,
683
2 * k + SRV_LOG_SPACE_FIRST_ID, FALSE);
684
#ifdef UNIV_LOG_ARCHIVE
685
/* If this is the first log group, create the file space object
687
Under MySQL, no archiving ever done. */
689
if (k == 0 && i == 0) {
690
arch_space_id = 2 * k + 1 + SRV_LOG_SPACE_FIRST_ID;
692
fil_space_create("arch_log_space", arch_space_id, 0, FIL_LOG);
694
arch_space_id = ULINT_UNDEFINED;
696
#endif /* UNIV_LOG_ARCHIVE */
698
log_group_init(k, srv_n_log_files,
699
srv_log_file_size * UNIV_PAGE_SIZE,
700
2 * k + SRV_LOG_SPACE_FIRST_ID,
701
SRV_LOG_SPACE_FIRST_ID + 1); /* dummy arch
708
/*********************************************************************//**
709
Creates or opens database data files and closes them.
710
@return DB_SUCCESS or error code */
713
open_or_create_data_files(
714
/*======================*/
715
ibool* create_new_db, /*!< out: TRUE if new database should be
717
#ifdef UNIV_LOG_ARCHIVE
718
ulint* min_arch_log_no,/*!< out: min of archived log
719
numbers in data files */
720
ulint* max_arch_log_no,/*!< out: max of archived log
721
numbers in data files */
722
#endif /* UNIV_LOG_ARCHIVE */
723
ib_uint64_t* min_flushed_lsn,/*!< out: min of flushed lsn
724
values in data files */
725
ib_uint64_t* max_flushed_lsn,/*!< out: max of flushed lsn
726
values in data files */
727
ulint* sum_of_new_sizes)/*!< out: sum of sizes of the
732
ibool one_opened = FALSE;
733
ibool one_created = FALSE;
736
ulint rounded_size_pages;
739
if (srv_n_data_files >= 1000) {
740
fprintf(stderr, "InnoDB: can only have < 1000 data files\n"
741
"InnoDB: you have defined %lu\n",
742
(ulong) srv_n_data_files);
746
*sum_of_new_sizes = 0;
748
*create_new_db = FALSE;
750
srv_normalize_path_for_win(srv_data_home);
752
for (i = 0; i < srv_n_data_files; i++) {
755
srv_normalize_path_for_win(srv_data_file_names[i]);
756
dirnamelen = strlen(srv_data_home);
758
ut_a(dirnamelen + strlen(srv_data_file_names[i])
759
< (sizeof name) - 1);
760
memcpy(name, srv_data_home, dirnamelen);
761
/* Add a path separator if needed. */
762
if (dirnamelen && name[dirnamelen - 1] != SRV_PATH_SEPARATOR) {
763
name[dirnamelen++] = SRV_PATH_SEPARATOR;
766
strcpy(name + dirnamelen, srv_data_file_names[i]);
768
if (srv_data_file_is_raw_partition[i] == 0) {
770
/* First we try to create the file: if it already
771
exists, ret will get value FALSE */
773
files[i] = os_file_create(innodb_file_data_key,
774
name, OS_FILE_CREATE,
778
if (ret == FALSE && os_file_get_last_error(FALSE)
779
!= OS_FILE_ALREADY_EXISTS
781
/* AIX 5.1 after security patch ML7 may have
782
errno set to 0 here, which causes our function
783
to return 100; work around that AIX problem */
784
&& os_file_get_last_error(FALSE) != 100
788
"InnoDB: Error in creating"
794
} else if (srv_data_file_is_raw_partition[i] == SRV_NEW_RAW) {
795
/* The partition is opened, not created; then it is
798
srv_start_raw_disk_in_use = TRUE;
799
srv_created_new_raw = TRUE;
801
files[i] = os_file_create(innodb_file_data_key,
802
name, OS_FILE_OPEN_RAW,
807
"InnoDB: Error in opening %s\n", name);
811
} else if (srv_data_file_is_raw_partition[i] == SRV_OLD_RAW) {
812
srv_start_raw_disk_in_use = TRUE;
820
/* We open the data file */
824
"InnoDB: Error: data files can only"
825
" be added at the end\n");
827
"InnoDB: of a tablespace, but"
828
" data file %s existed beforehand.\n",
833
if (srv_data_file_is_raw_partition[i] == SRV_OLD_RAW) {
834
files[i] = os_file_create(
835
innodb_file_data_key,
836
name, OS_FILE_OPEN_RAW,
837
OS_FILE_NORMAL, OS_DATA_FILE, &ret);
839
files[i] = os_file_create(
840
innodb_file_data_key,
841
name, OS_FILE_OPEN_RETRY,
842
OS_FILE_NORMAL, OS_DATA_FILE, &ret);
844
files[i] = os_file_create(
845
innodb_file_data_key,
846
name, OS_FILE_OPEN, OS_FILE_NORMAL,
852
"InnoDB: Error in opening %s\n", name);
853
os_file_get_last_error(TRUE);
858
if (srv_data_file_is_raw_partition[i] == SRV_OLD_RAW) {
860
goto skip_size_check;
863
ret = os_file_get_size(files[i], &size, &size_high);
865
/* Round size downward to megabytes */
868
= (size / (1024 * 1024) + 4096 * size_high)
869
<< (20 - UNIV_PAGE_SIZE_SHIFT);
871
if (i == srv_n_data_files - 1
872
&& srv_auto_extend_last_data_file) {
874
if (srv_data_file_sizes[i] > rounded_size_pages
875
|| (srv_last_file_size_max > 0
876
&& srv_last_file_size_max
877
< rounded_size_pages)) {
880
"InnoDB: Error: auto-extending"
882
" of a different size\n"
883
"InnoDB: %lu pages (rounded"
884
" down to MB) than specified"
885
" in the .cnf file:\n"
886
"InnoDB: initial %lu pages,"
887
" max %lu (relevant if"
888
" non-zero) pages!\n",
890
(ulong) rounded_size_pages,
891
(ulong) srv_data_file_sizes[i],
893
srv_last_file_size_max);
898
srv_data_file_sizes[i] = rounded_size_pages;
901
if (rounded_size_pages != srv_data_file_sizes[i]) {
904
"InnoDB: Error: data file %s"
905
" is of a different size\n"
907
" (rounded down to MB)\n"
908
"InnoDB: than specified"
909
" in the .cnf file %lu pages!\n",
911
(ulong) rounded_size_pages,
912
(ulong) srv_data_file_sizes[i]);
917
fil_read_flushed_lsn_and_arch_log_no(
918
files[i], one_opened,
919
#ifdef UNIV_LOG_ARCHIVE
920
min_arch_log_no, max_arch_log_no,
921
#endif /* UNIV_LOG_ARCHIVE */
922
min_flushed_lsn, max_flushed_lsn);
925
/* We created the data file and now write it full of
931
ut_print_timestamp(stderr);
933
" InnoDB: Data file %s did not"
934
" exist: new to be created\n",
938
"InnoDB: The first specified"
939
" data file %s did not exist:\n"
940
"InnoDB: a new database"
941
" to be created!\n", name);
942
*create_new_db = TRUE;
945
ut_print_timestamp(stderr);
947
" InnoDB: Setting file %s size to %lu MB\n",
949
(ulong) (srv_data_file_sizes[i]
950
>> (20 - UNIV_PAGE_SIZE_SHIFT)));
953
"InnoDB: Database physically writes the"
954
" file full: wait...\n");
956
ret = os_file_set_size(
958
srv_calc_low32(srv_data_file_sizes[i]),
959
srv_calc_high32(srv_data_file_sizes[i]));
963
"InnoDB: Error in creating %s:"
964
" probably out of disk space\n", name);
969
*sum_of_new_sizes = *sum_of_new_sizes
970
+ srv_data_file_sizes[i];
973
ret = os_file_close(files[i]);
977
fil_space_create(name, 0, 0, FIL_TABLESPACE);
980
ut_a(fil_validate());
982
fil_node_create(name, srv_data_file_sizes[i], 0,
983
srv_data_file_is_raw_partition[i] != 0);
989
/********************************************************************
990
Starts InnoDB and creates a new database if database files
991
are not found and the user wants.
992
@return DB_SUCCESS or error code */
995
innobase_start_or_create_for_mysql(void)
996
/*====================================*/
999
ibool log_file_created;
1000
ibool log_created = FALSE;
1001
ibool log_opened = FALSE;
1002
ib_uint64_t min_flushed_lsn;
1003
ib_uint64_t max_flushed_lsn;
1004
#ifdef UNIV_LOG_ARCHIVE
1005
ulint min_arch_log_no;
1006
ulint max_arch_log_no;
1007
#endif /* UNIV_LOG_ARCHIVE */
1008
ulint sum_of_new_sizes;
1009
ulint sum_of_data_file_sizes;
1010
ulint tablespace_size_in_header;
1014
my_bool srv_file_per_table_original_value
1015
= srv_file_per_table;
1017
#ifdef HAVE_DARWIN_THREADS
1019
/* This executable has been compiled on Mac OS X 10.3 or later.
1020
Assume that F_FULLFSYNC is available at run-time. */
1021
srv_have_fullfsync = TRUE;
1022
# else /* F_FULLFSYNC */
1023
/* This executable has been compiled on Mac OS X 10.2
1024
or earlier. Determine if the executable is running
1025
on Mac OS X 10.3 or later. */
1026
struct utsname utsname;
1027
if (uname(&utsname)) {
1028
fputs("InnoDB: cannot determine Mac OS X version!\n", stderr);
1030
srv_have_fullfsync = strcmp(utsname.release, "7.") >= 0;
1032
if (!srv_have_fullfsync) {
1033
fputs("InnoDB: On Mac OS X, fsync() may be"
1034
" broken on internal drives,\n"
1035
"InnoDB: making transactions unsafe!\n", stderr);
1037
# endif /* F_FULLFSYNC */
1038
#endif /* HAVE_DARWIN_THREADS */
1040
if (sizeof(ulint) != sizeof(void*)) {
1042
"InnoDB: Error: size of InnoDB's ulint is %lu,"
1043
" but size of void* is %lu.\n"
1044
"InnoDB: The sizes should be the same"
1045
" so that on a 64-bit platform you can\n"
1046
"InnoDB: allocate more than 4 GB of memory.",
1047
(ulong)sizeof(ulint), (ulong)sizeof(void*));
1050
/* System tables are created in tablespace 0. Thus, we must
1051
temporarily clear srv_file_per_table. This is ok, because the
1052
server will not accept connections (which could modify
1053
innodb_file_per_table) until this function has returned. */
1054
srv_file_per_table = FALSE;
1057
"InnoDB: !!!!!!!! UNIV_DEBUG switched on !!!!!!!!!\n");
1060
#ifdef UNIV_IBUF_DEBUG
1062
"InnoDB: !!!!!!!! UNIV_IBUF_DEBUG switched on !!!!!!!!!\n"
1063
# ifdef UNIV_IBUF_COUNT_DEBUG
1064
"InnoDB: !!!!!!!! UNIV_IBUF_COUNT_DEBUG switched on !!!!!!!!!\n"
1065
"InnoDB: Crash recovery will fail with UNIV_IBUF_COUNT_DEBUG\n"
1070
#ifdef UNIV_SYNC_DEBUG
1072
"InnoDB: !!!!!!!! UNIV_SYNC_DEBUG switched on !!!!!!!!!\n");
1075
#ifdef UNIV_SEARCH_DEBUG
1077
"InnoDB: !!!!!!!! UNIV_SEARCH_DEBUG switched on !!!!!!!!!\n");
1080
#ifdef UNIV_LOG_LSN_DEBUG
1082
"InnoDB: !!!!!!!! UNIV_LOG_LSN_DEBUG switched on !!!!!!!!!\n");
1083
#endif /* UNIV_LOG_LSN_DEBUG */
1084
#ifdef UNIV_MEM_DEBUG
1086
"InnoDB: !!!!!!!! UNIV_MEM_DEBUG switched on !!!!!!!!!\n");
1089
if (UNIV_LIKELY(srv_use_sys_malloc)) {
1091
"InnoDB: The InnoDB memory heap is disabled\n");
1094
fputs("InnoDB: " IB_ATOMICS_STARTUP_MSG
1095
"\nInnoDB: Compressed tables use zlib " ZLIB_VERSION
1096
#ifdef UNIV_ZIP_DEBUG
1098
#endif /* UNIV_ZIP_DEBUG */
1099
#ifdef UNIV_ZIP_COPY
1100
" and extra copying"
1101
#endif /* UNIV_ZIP_COPY */
1105
/* Since InnoDB does not currently clean up all its internal data
1106
structures in MySQL Embedded Server Library server_end(), we
1107
print an error message if someone tries to start up InnoDB a
1108
second time during the process lifetime. */
1110
if (srv_start_has_been_called) {
1112
"InnoDB: Error: startup called second time"
1113
" during the process lifetime.\n"
1114
"InnoDB: In the MySQL Embedded Server Library"
1115
" you cannot call server_init()\n"
1116
"InnoDB: more than once during"
1117
" the process lifetime.\n");
1120
srv_start_has_been_called = TRUE;
1123
log_do_write = TRUE;
1124
#endif /* UNIV_DEBUG */
1125
/* yydebug = TRUE; */
1127
srv_is_being_started = TRUE;
1128
srv_startup_is_before_trx_rollback_phase = TRUE;
1131
switch (os_get_os_version()) {
1135
/* On Win 95, 98, ME, Win32 subsystem for Windows 3.1,
1136
and NT use simulated aio. In NT Windows provides async i/o,
1137
but when run in conjunction with InnoDB Hot Backup, it seemed
1138
to corrupt the data files. */
1140
srv_use_native_aio = FALSE;
1145
/* On 2000 and XP, async IO is available. */
1146
srv_use_native_aio = TRUE;
1150
/* Vista and later have both async IO and condition variables */
1151
srv_use_native_aio = TRUE;
1152
srv_use_native_conditions = TRUE;
1156
#elif defined(LINUX_NATIVE_AIO)
1158
if (srv_use_native_aio) {
1159
ut_print_timestamp(stderr);
1161
" InnoDB: Using Linux native AIO\n");
1164
/* Currently native AIO is supported only on windows and linux
1165
and that also when the support is compiled in. In all other
1166
cases, we ignore the setting of innodb_use_native_aio. */
1167
srv_use_native_aio = FALSE;
1171
if (srv_file_flush_method_str == NULL) {
1172
/* These are the default options */
1174
srv_unix_file_flush_method = SRV_UNIX_FSYNC;
1176
srv_win_file_flush_method = SRV_WIN_IO_UNBUFFERED;
1178
} else if (0 == ut_strcmp(srv_file_flush_method_str, "fsync")) {
1179
srv_unix_file_flush_method = SRV_UNIX_FSYNC;
1181
} else if (0 == ut_strcmp(srv_file_flush_method_str, "O_DSYNC")) {
1182
srv_unix_file_flush_method = SRV_UNIX_O_DSYNC;
1184
} else if (0 == ut_strcmp(srv_file_flush_method_str, "O_DIRECT")) {
1185
srv_unix_file_flush_method = SRV_UNIX_O_DIRECT;
1187
} else if (0 == ut_strcmp(srv_file_flush_method_str, "littlesync")) {
1188
srv_unix_file_flush_method = SRV_UNIX_LITTLESYNC;
1190
} else if (0 == ut_strcmp(srv_file_flush_method_str, "nosync")) {
1191
srv_unix_file_flush_method = SRV_UNIX_NOSYNC;
1193
} else if (0 == ut_strcmp(srv_file_flush_method_str, "normal")) {
1194
srv_win_file_flush_method = SRV_WIN_IO_NORMAL;
1195
srv_use_native_aio = FALSE;
1197
} else if (0 == ut_strcmp(srv_file_flush_method_str, "unbuffered")) {
1198
srv_win_file_flush_method = SRV_WIN_IO_UNBUFFERED;
1199
srv_use_native_aio = FALSE;
1201
} else if (0 == ut_strcmp(srv_file_flush_method_str,
1202
"async_unbuffered")) {
1203
srv_win_file_flush_method = SRV_WIN_IO_UNBUFFERED;
1207
"InnoDB: Unrecognized value %s for"
1208
" innodb_flush_method\n",
1209
srv_file_flush_method_str);
1213
/* Note that the call srv_boot() also changes the values of
1214
some variables to the units used by InnoDB internally */
1216
/* Set the maximum number of threads which can wait for a semaphore
1217
inside InnoDB: this is the 'sync wait array' size, as well as the
1218
maximum number of threads that can wait in the 'srv_conc array' for
1219
their time to enter InnoDB. */
1221
if (srv_buf_pool_size >= 1000 * 1024 * 1024) {
1222
/* If buffer pool is less than 1000 MB,
1223
assume fewer threads. Also use only one
1224
buffer pool instance */
1225
srv_max_n_threads = 50000;
1227
} else if (srv_buf_pool_size >= 8 * 1024 * 1024) {
1229
srv_buf_pool_instances = 1;
1230
srv_max_n_threads = 10000;
1232
srv_buf_pool_instances = 1;
1233
srv_max_n_threads = 1000; /* saves several MB of memory,
1234
especially in 64-bit
1240
if (err != DB_SUCCESS) {
1245
mutex_create(srv_monitor_file_mutex_key,
1246
&srv_monitor_file_mutex, SYNC_NO_ORDER_CHECK);
1248
if (srv_innodb_status) {
1249
srv_monitor_file_name = mem_alloc(
1250
strlen(fil_path_to_mysql_datadir)
1251
+ 20 + sizeof "/innodb_status.");
1252
sprintf(srv_monitor_file_name, "%s/innodb_status.%lu",
1253
fil_path_to_mysql_datadir, os_proc_get_number());
1254
srv_monitor_file = fopen(srv_monitor_file_name, "w+");
1255
if (!srv_monitor_file) {
1256
fprintf(stderr, "InnoDB: unable to create %s: %s\n",
1257
srv_monitor_file_name, strerror(errno));
1261
srv_monitor_file_name = NULL;
1262
srv_monitor_file = os_file_create_tmpfile();
1263
if (!srv_monitor_file) {
1268
mutex_create(srv_dict_tmpfile_mutex_key,
1269
&srv_dict_tmpfile_mutex, SYNC_DICT_OPERATION);
1271
srv_dict_tmpfile = os_file_create_tmpfile();
1272
if (!srv_dict_tmpfile) {
1276
mutex_create(srv_misc_tmpfile_mutex_key,
1277
&srv_misc_tmpfile_mutex, SYNC_ANY_LATCH);
1279
srv_misc_tmpfile = os_file_create_tmpfile();
1280
if (!srv_misc_tmpfile) {
1284
/* innodb_file_io_threads used to be user settable.
1285
It is now just a combination of read_io_threads and
1286
write_io_threads that is set by innodb internally. */
1288
/* Now overwrite the value on srv_n_file_io_threads */
1289
srv_n_file_io_threads = 2 + srv_n_read_io_threads
1290
+ srv_n_write_io_threads;
1292
ut_a(srv_n_file_io_threads <= SRV_MAX_N_IO_THREADS);
1294
/* TODO: Investigate if SRV_N_PENDING_IOS_PER_THREAD (32) limit
1295
still applies to windows. */
1296
if (!srv_use_native_aio) {
1297
io_limit = 8 * SRV_N_PENDING_IOS_PER_THREAD;
1299
io_limit = SRV_N_PENDING_IOS_PER_THREAD;
1302
os_aio_init(io_limit,
1303
srv_n_read_io_threads,
1304
srv_n_write_io_threads,
1305
SRV_MAX_N_PENDING_SYNC_IOS);
1307
fil_init(srv_file_per_table ? 50000 : 5000,
1308
srv_max_n_open_files);
1310
/* Print time to initialize the buffer pool */
1311
ut_print_timestamp(stderr);
1313
" InnoDB: Initializing buffer pool, size =");
1315
if (srv_buf_pool_size >= 1024 * 1024 * 1024) {
1318
((double) srv_buf_pool_size) / (1024 * 1024 * 1024));
1322
((double) srv_buf_pool_size) / (1024 * 1024));
1325
err = buf_pool_init(srv_buf_pool_size, srv_buf_pool_instances);
1327
ut_print_timestamp(stderr);
1329
" InnoDB: Completed initialization of buffer pool\n");
1331
if (err != DB_SUCCESS) {
1333
"InnoDB: Fatal error: cannot allocate the memory"
1334
" for the buffer pool\n");
1340
/* We have observed deadlocks with a 5MB buffer pool but
1341
the actual lower limit could very well be a little higher. */
1343
if (srv_buf_pool_size <= 5 * 1024 * 1024) {
1345
fprintf(stderr, "InnoDB: Warning: Small buffer pool size "
1346
"(%luM), the flst_validate() debug function "
1347
"can cause a deadlock if the buffer pool fills up.\n",
1348
srv_buf_pool_size / 1024 / 1024);
1355
lock_sys_create(srv_lock_table_size);
1357
/* Create i/o-handler threads: */
1359
for (i = 0; i < srv_n_file_io_threads; i++) {
1362
os_thread_create(io_handler_thread, n + i, thread_ids + i);
1365
#ifdef UNIV_LOG_ARCHIVE
1366
if (0 != ut_strcmp(srv_log_group_home_dirs[0], srv_arch_dir)) {
1368
"InnoDB: Error: you must set the log group"
1369
" home dir in my.cnf the\n"
1370
"InnoDB: same as log arch dir.\n");
1374
#endif /* UNIV_LOG_ARCHIVE */
1376
if (srv_n_log_files * srv_log_file_size >= 262144) {
1378
"InnoDB: Error: combined size of log files"
1379
" must be < 4 GB\n");
1384
sum_of_new_sizes = 0;
1386
for (i = 0; i < srv_n_data_files; i++) {
1388
if (sizeof(off_t) < 5 && srv_data_file_sizes[i] >= 262144) {
1390
"InnoDB: Error: file size must be < 4 GB"
1391
" with this MySQL binary\n"
1392
"InnoDB: and operating system combination,"
1393
" in some OS's < 2 GB\n");
1398
sum_of_new_sizes += srv_data_file_sizes[i];
1401
if (sum_of_new_sizes < 10485760 / UNIV_PAGE_SIZE) {
1403
"InnoDB: Error: tablespace size must be"
1404
" at least 10 MB\n");
1409
err = open_or_create_data_files(&create_new_db,
1410
#ifdef UNIV_LOG_ARCHIVE
1411
&min_arch_log_no, &max_arch_log_no,
1412
#endif /* UNIV_LOG_ARCHIVE */
1413
&min_flushed_lsn, &max_flushed_lsn,
1415
if (err != DB_SUCCESS) {
1417
"InnoDB: Could not open or create data files.\n"
1418
"InnoDB: If you tried to add new data files,"
1419
" and it failed here,\n"
1420
"InnoDB: you should now edit innodb_data_file_path"
1422
"InnoDB: to what it was, and remove the"
1423
" new ibdata files InnoDB created\n"
1424
"InnoDB: in this failed attempt. InnoDB only wrote"
1425
" those files full of\n"
1426
"InnoDB: zeros, but did not yet use them in any way."
1427
" But be careful: do not\n"
1428
"InnoDB: remove old data files"
1429
" which contain your precious data!\n");
1434
#ifdef UNIV_LOG_ARCHIVE
1435
srv_normalize_path_for_win(srv_arch_dir);
1436
srv_arch_dir = srv_add_path_separator_if_needed(srv_arch_dir);
1437
#endif /* UNIV_LOG_ARCHIVE */
1439
for (i = 0; i < srv_n_log_files; i++) {
1440
err = open_or_create_log_file(create_new_db, &log_file_created,
1442
if (err != DB_SUCCESS) {
1447
if (log_file_created) {
1452
if ((log_opened && create_new_db)
1453
|| (log_opened && log_created)) {
1455
"InnoDB: Error: all log files must be"
1456
" created at the same time.\n"
1457
"InnoDB: All log files must be"
1458
" created also in database creation.\n"
1459
"InnoDB: If you want bigger or smaller"
1460
" log files, shut down the\n"
1461
"InnoDB: database and make sure there"
1462
" were no errors in shutdown.\n"
1463
"InnoDB: Then delete the existing log files."
1464
" Edit the .cnf file\n"
1465
"InnoDB: and start the database again.\n");
1471
/* Open all log files and data files in the system tablespace: we
1472
keep them open until database shutdown */
1474
fil_open_log_and_system_tablespace_files();
1476
if (log_created && !create_new_db
1477
#ifdef UNIV_LOG_ARCHIVE
1478
&& !srv_archive_recovery
1479
#endif /* UNIV_LOG_ARCHIVE */
1481
if (max_flushed_lsn != min_flushed_lsn
1482
#ifdef UNIV_LOG_ARCHIVE
1483
|| max_arch_log_no != min_arch_log_no
1484
#endif /* UNIV_LOG_ARCHIVE */
1487
"InnoDB: Cannot initialize created"
1488
" log files because\n"
1489
"InnoDB: data files were not in sync"
1490
" with each other\n"
1491
"InnoDB: or the data files are corrupt.\n");
1496
if (max_flushed_lsn < (ib_uint64_t) 1000) {
1498
"InnoDB: Cannot initialize created"
1499
" log files because\n"
1500
"InnoDB: data files are corrupt,"
1501
" or new data files were\n"
1502
"InnoDB: created when the database"
1503
" was started previous\n"
1504
"InnoDB: time but the database"
1505
" was not shut down\n"
1506
"InnoDB: normally after that.\n");
1511
mutex_enter(&(log_sys->mutex));
1513
#ifdef UNIV_LOG_ARCHIVE
1514
/* Do not + 1 arch_log_no because we do not use log
1516
recv_reset_logs(max_flushed_lsn, max_arch_log_no, TRUE);
1518
recv_reset_logs(max_flushed_lsn, TRUE);
1519
#endif /* UNIV_LOG_ARCHIVE */
1521
mutex_exit(&(log_sys->mutex));
1524
trx_sys_file_format_init();
1526
if (create_new_db) {
1529
fsp_header_init(0, sum_of_new_sizes, &mtr);
1533
/* To maintain backward compatibility we create only
1534
the first rollback segment before the double write buffer.
1535
All the remaining rollback segments will be created later,
1536
after the double write buffer has been created. */
1541
srv_startup_is_before_trx_rollback_phase = FALSE;
1543
#ifdef UNIV_LOG_ARCHIVE
1544
} else if (srv_archive_recovery) {
1546
"InnoDB: Starting archive"
1547
" recovery from a backup...\n");
1548
err = recv_recovery_from_archive_start(
1549
min_flushed_lsn, srv_archive_recovery_limit_lsn,
1551
if (err != DB_SUCCESS) {
1555
/* Since ibuf init is in dict_boot, and ibuf is needed
1556
in any disk i/o, first call dict_boot */
1560
trx_sys_init_at_db_start();
1562
srv_startup_is_before_trx_rollback_phase = FALSE;
1564
/* Initialize the fsp free limit global variable in the log
1566
fsp_header_get_free_limit();
1568
recv_recovery_from_archive_finish();
1569
#endif /* UNIV_LOG_ARCHIVE */
1572
/* Check if we support the max format that is stamped
1573
on the system tablespace.
1574
Note: We are NOT allowed to make any modifications to
1575
the TRX_SYS_PAGE_NO page before recovery because this
1576
page also contains the max_trx_id etc. important system
1577
variables that are required for recovery. We need to
1578
ensure that we return the system to a state where normal
1579
recovery is guaranteed to work. We do this by
1580
invalidating the buffer cache, this will force the
1581
reread of the page and restoration to its last known
1582
consistent state, this is REQUIRED for the recovery
1584
err = trx_sys_file_format_max_check(
1585
srv_max_file_format_at_startup);
1587
if (err != DB_SUCCESS) {
1591
/* Invalidate the buffer pool to ensure that we reread
1592
the page that we read above, during recovery.
1593
Note that this is not as heavy weight as it seems. At
1594
this point there will be only ONE page in the buf_LRU
1595
and there must be no page in the buf_flush list. */
1596
buf_pool_invalidate();
1598
/* We always try to do a recovery, even if the database had
1599
been shut down normally: this is the normal startup path */
1601
err = recv_recovery_from_checkpoint_start(LOG_CHECKPOINT,
1605
if (err != DB_SUCCESS) {
1610
/* Since the insert buffer init is in dict_boot, and the
1611
insert buffer is needed in any disk i/o, first we call
1612
dict_boot(). Note that trx_sys_init_at_db_start() only needs
1613
to access space 0, and the insert buffer at this stage already
1614
works for space 0. */
1617
trx_sys_init_at_db_start();
1619
/* Initialize the fsp free limit global variable in the log
1621
fsp_header_get_free_limit();
1623
/* recv_recovery_from_checkpoint_finish needs trx lists which
1624
are initialized in trx_sys_init_at_db_start(). */
1626
recv_recovery_from_checkpoint_finish();
1627
if (srv_force_recovery < SRV_FORCE_NO_IBUF_MERGE) {
1628
/* The following call is necessary for the insert
1629
buffer to work with multiple tablespaces. We must
1630
know the mapping between space id's and .ibd file
1633
In a crash recovery, we check that the info in data
1634
dictionary is consistent with what we already know
1635
about space id's from the call of
1636
fil_load_single_table_tablespaces().
1638
In a normal startup, we create the space objects for
1639
every table in the InnoDB data dictionary that has
1642
We also determine the maximum tablespace id used. */
1644
dict_check_tablespaces_and_store_max_id(
1645
recv_needed_recovery);
1648
srv_startup_is_before_trx_rollback_phase = FALSE;
1649
recv_recovery_rollback_active();
1651
/* It is possible that file_format tag has never
1652
been set. In this case we initialize it to minimum
1653
value. Important to note that we can do it ONLY after
1654
we have finished the recovery process so that the
1655
image of TRX_SYS_PAGE_NO is not stale. */
1656
trx_sys_file_format_tag_init();
1659
if (!create_new_db && sum_of_new_sizes > 0) {
1660
/* New data file(s) were added */
1663
fsp_header_inc_size(0, sum_of_new_sizes, &mtr);
1667
/* Immediately write the log record about increased tablespace
1668
size to disk, so that it is durable even if mysqld would crash
1671
log_buffer_flush_to_disk();
1674
#ifdef UNIV_LOG_ARCHIVE
1675
/* Archiving is always off under MySQL */
1676
if (!srv_log_archive_on) {
1677
ut_a(DB_SUCCESS == log_archive_noarchivelog());
1679
mutex_enter(&(log_sys->mutex));
1681
start_archive = FALSE;
1683
if (log_sys->archiving_state == LOG_ARCH_OFF) {
1684
start_archive = TRUE;
1687
mutex_exit(&(log_sys->mutex));
1689
if (start_archive) {
1690
ut_a(DB_SUCCESS == log_archive_archivelog());
1693
#endif /* UNIV_LOG_ARCHIVE */
1695
/* fprintf(stderr, "Max allowed record size %lu\n",
1696
page_get_free_space_of_empty() / 2); */
1698
if (trx_doublewrite == NULL) {
1699
/* Create the doublewrite buffer to a new tablespace */
1701
trx_sys_create_doublewrite_buf();
1704
/* Here the double write buffer has already been created and so
1705
any new rollback segments will be allocated after the double
1706
write buffer. The default segment should already exist.
1707
We create the new segments only if it's a new database or
1708
the database was shutdown cleanly. */
1710
/* Note: When creating the extra rollback segments during an upgrade
1711
we violate the latching order, even if the change buffer is empty.
1712
We make an exception in sync0sync.c and check srv_is_being_started
1713
for that violation. It cannot create a deadlock because we are still
1714
running in single threaded mode essentially. Only the IO threads
1715
should be running at this stage. */
1717
trx_sys_create_rsegs(TRX_SYS_N_RSEGS - 1);
1719
/* Create the thread which watches the timeouts for lock waits */
1720
os_thread_create(&srv_lock_timeout_thread, NULL,
1721
thread_ids + 2 + SRV_MAX_N_IO_THREADS);
1723
/* Create the thread which warns of long semaphore waits */
1724
os_thread_create(&srv_error_monitor_thread, NULL,
1725
thread_ids + 3 + SRV_MAX_N_IO_THREADS);
1727
/* Create the thread which prints InnoDB monitor info */
1728
os_thread_create(&srv_monitor_thread, NULL,
1729
thread_ids + 4 + SRV_MAX_N_IO_THREADS);
1731
srv_is_being_started = FALSE;
1733
err = dict_create_or_check_foreign_constraint_tables();
1735
if (err != DB_SUCCESS) {
1736
return((int)DB_ERROR);
1739
/* Create the master thread which does purge and other utility
1742
os_thread_create(&srv_master_thread, NULL, thread_ids
1743
+ (1 + SRV_MAX_N_IO_THREADS));
1745
/* Currently we allow only a single purge thread. */
1746
ut_a(srv_n_purge_threads == 0 || srv_n_purge_threads == 1);
1748
/* If the user has requested a separate purge thread then
1749
start the purge thread. */
1750
if (srv_n_purge_threads == 1) {
1751
os_thread_create(&srv_purge_thread, NULL, NULL);
1755
/* buf_debug_prints = TRUE; */
1756
#endif /* UNIV_DEBUG */
1757
sum_of_data_file_sizes = 0;
1759
for (i = 0; i < srv_n_data_files; i++) {
1760
sum_of_data_file_sizes += srv_data_file_sizes[i];
1763
tablespace_size_in_header = fsp_header_get_tablespace_size();
1765
if (!srv_auto_extend_last_data_file
1766
&& sum_of_data_file_sizes != tablespace_size_in_header) {
1769
"InnoDB: Error: tablespace size"
1770
" stored in header is %lu pages, but\n"
1771
"InnoDB: the sum of data file sizes is %lu pages\n",
1772
(ulong) tablespace_size_in_header,
1773
(ulong) sum_of_data_file_sizes);
1775
if (srv_force_recovery == 0
1776
&& sum_of_data_file_sizes < tablespace_size_in_header) {
1777
/* This is a fatal error, the tail of a tablespace is
1781
"InnoDB: Cannot start InnoDB."
1782
" The tail of the system tablespace is\n"
1783
"InnoDB: missing. Have you edited"
1784
" innodb_data_file_path in my.cnf in an\n"
1785
"InnoDB: inappropriate way, removing"
1786
" ibdata files from there?\n"
1787
"InnoDB: You can set innodb_force_recovery=1"
1788
" in my.cnf to force\n"
1789
"InnoDB: a startup if you are trying"
1790
" to recover a badly corrupt database.\n");
1796
if (srv_auto_extend_last_data_file
1797
&& sum_of_data_file_sizes < tablespace_size_in_header) {
1800
"InnoDB: Error: tablespace size stored in header"
1801
" is %lu pages, but\n"
1802
"InnoDB: the sum of data file sizes"
1803
" is only %lu pages\n",
1804
(ulong) tablespace_size_in_header,
1805
(ulong) sum_of_data_file_sizes);
1807
if (srv_force_recovery == 0) {
1810
"InnoDB: Cannot start InnoDB. The tail of"
1811
" the system tablespace is\n"
1812
"InnoDB: missing. Have you edited"
1813
" innodb_data_file_path in my.cnf in an\n"
1814
"InnoDB: inappropriate way, removing"
1815
" ibdata files from there?\n"
1816
"InnoDB: You can set innodb_force_recovery=1"
1817
" in my.cnf to force\n"
1818
"InnoDB: a startup if you are trying to"
1819
" recover a badly corrupt database.\n");
1825
/* Check that os_fast_mutexes work as expected */
1826
os_fast_mutex_init(&srv_os_test_mutex);
1828
if (0 != os_fast_mutex_trylock(&srv_os_test_mutex)) {
1830
"InnoDB: Error: pthread_mutex_trylock returns"
1831
" an unexpected value on\n"
1832
"InnoDB: success! Cannot continue.\n");
1836
os_fast_mutex_unlock(&srv_os_test_mutex);
1838
os_fast_mutex_lock(&srv_os_test_mutex);
1840
os_fast_mutex_unlock(&srv_os_test_mutex);
1842
os_fast_mutex_free(&srv_os_test_mutex);
1844
if (srv_print_verbose_log) {
1845
ut_print_timestamp(stderr);
1847
" InnoDB %s started; "
1848
"log sequence number %"PRIu64"\n",
1849
INNODB_VERSION_STR, srv_start_lsn);
1852
if (srv_force_recovery > 0) {
1854
"InnoDB: !!! innodb_force_recovery"
1855
" is set to %lu !!!\n",
1856
(ulong) srv_force_recovery);
1861
if (trx_doublewrite_must_reset_space_ids) {
1862
/* Actually, we did not change the undo log format between
1863
4.0 and 4.1.1, and we would not need to run purge to
1864
completion. Note also that the purge algorithm in 4.1.1
1865
can process the the history list again even after a full
1866
purge, because our algorithm does not cut the end of the
1867
history list in all cases so that it would become empty
1868
after a full purge. That mean that we may purge 4.0 type
1869
undo log even after this phase.
1871
The insert buffer record format changed between 4.0 and
1872
4.1.1. It is essential that the insert buffer is emptied
1876
"InnoDB: You are upgrading to an"
1877
" InnoDB version which allows multiple\n"
1878
"InnoDB: tablespaces. Wait that purge"
1879
" and insert buffer merge run to\n"
1880
"InnoDB: completion...\n");
1882
os_thread_sleep(1000000);
1884
if (0 == strcmp(srv_main_thread_op_info,
1885
"waiting for server activity")) {
1887
ut_a(ibuf_is_empty());
1893
"InnoDB: Full purge and insert buffer merge"
1896
trx_sys_mark_upgraded_to_multiple_tablespaces();
1899
"InnoDB: You have now successfully upgraded"
1900
" to the multiple tablespaces\n"
1901
"InnoDB: format. You should NOT DOWNGRADE"
1902
" to an earlier version of\n"
1903
"InnoDB: InnoDB! But if you absolutely need to"
1905
"InnoDB: " REFMAN "multiple-tablespaces.html\n"
1906
"InnoDB: for instructions.\n");
1909
if (srv_force_recovery == 0) {
1910
/* In the insert buffer we may have even bigger tablespace
1911
id's, because we may have dropped those tablespaces, but
1912
insert buffer merge has not had time to clean the records from
1915
ibuf_update_max_tablespace_id();
1918
srv_file_per_table = srv_file_per_table_original_value;
1920
srv_was_started = TRUE;
1922
return((int) DB_SUCCESS);
1925
/****************************************************************//**
1926
Shuts down the InnoDB database.
1927
@return DB_SUCCESS or error code */
1930
innobase_shutdown_for_mysql(void)
1931
/*=============================*/
1934
if (!srv_was_started) {
1935
if (srv_is_being_started) {
1936
ut_print_timestamp(stderr);
1938
" InnoDB: Warning: shutting down"
1939
" a not properly started\n"
1940
"InnoDB: or created database!\n");
1946
/* 1. Flush the buffer pool to disk, write the current lsn to
1947
the tablespace header(s), and copy all log data to archive.
1948
The step 1 is the real InnoDB shutdown. The remaining steps 2 - ...
1949
just free data structures after the shutdown. */
1952
if (srv_fast_shutdown == 2) {
1953
ut_print_timestamp(stderr);
1955
" InnoDB: MySQL has requested a very fast shutdown"
1956
" without flushing "
1957
"the InnoDB buffer pool to data files."
1958
" At the next mysqld startup "
1959
"InnoDB will do a crash recovery!\n");
1962
logs_empty_and_mark_files_at_shutdown();
1964
if (srv_conc_n_threads != 0) {
1966
"InnoDB: Warning: query counter shows %ld queries"
1968
"InnoDB: inside InnoDB at shutdown\n",
1969
srv_conc_n_threads);
1972
/* 2. Make all threads created by InnoDB to exit */
1974
srv_shutdown_state = SRV_SHUTDOWN_EXIT_THREADS;
1976
/* In a 'very fast' shutdown, we do not need to wait for these threads
1977
to die; all which counts is that we flushed the log; a 'very fast'
1978
shutdown is essentially a crash. */
1980
if (srv_fast_shutdown == 2) {
1984
/* All threads end up waiting for certain events. Put those events
1985
to the signaled state. Then the threads will exit themselves in
1986
os_thread_event_wait(). */
1988
for (i = 0; i < 1000; i++) {
1989
/* NOTE: IF YOU CREATE THREADS IN INNODB, YOU MUST EXIT THEM
1992
/* a. Let the lock timeout thread exit */
1993
os_event_set(srv_lock_timeout_thread_event);
1995
/* b. srv error monitor thread exits automatically, no need
1996
to do anything here */
1998
/* c. We wake the master thread so that it exits */
1999
srv_wake_master_thread();
2001
/* d. We wake the purge thread so that it exits */
2002
srv_wake_purge_thread();
2004
/* e. Exit the i/o threads */
2006
os_aio_wake_all_threads_at_shutdown();
2008
os_mutex_enter(os_sync_mutex);
2010
if (os_thread_count == 0) {
2011
/* All the threads have exited or are just exiting;
2012
NOTE that the threads may not have completed their
2013
exit yet. Should we use pthread_join() to make sure
2014
they have exited? If we did, we would have to
2015
remove the pthread_detach() from
2016
os_thread_exit(). Now we just sleep 0.1
2017
seconds and hope that is enough! */
2019
os_mutex_exit(os_sync_mutex);
2021
os_thread_sleep(100000);
2026
os_mutex_exit(os_sync_mutex);
2028
os_thread_sleep(100000);
2033
"InnoDB: Warning: %lu threads created by InnoDB"
2034
" had not exited at shutdown!\n",
2035
(ulong) os_thread_count);
2038
if (srv_monitor_file) {
2039
fclose(srv_monitor_file);
2040
srv_monitor_file = 0;
2041
if (srv_monitor_file_name) {
2042
unlink(srv_monitor_file_name);
2043
mem_free(srv_monitor_file_name);
2046
if (srv_dict_tmpfile) {
2047
fclose(srv_dict_tmpfile);
2048
srv_dict_tmpfile = 0;
2051
if (srv_misc_tmpfile) {
2052
fclose(srv_misc_tmpfile);
2053
srv_misc_tmpfile = 0;
2056
/* This must be disabled before closing the buffer pool
2057
and closing the data dictionary. */
2058
btr_search_disable();
2064
trx_sys_file_format_close();
2067
mutex_free(&srv_monitor_file_mutex);
2068
mutex_free(&srv_dict_tmpfile_mutex);
2069
mutex_free(&srv_misc_tmpfile_mutex);
2071
btr_search_sys_free();
2073
/* 3. Free all InnoDB's own mutexes and the os_fast_mutexes inside
2080
/* 4. Free the os_conc_mutex and all os_events and os_mutexes */
2084
/* 5. Free all allocated memory */
2088
buf_pool_free(srv_buf_pool_instances);
2091
/* ut_free_all_mem() frees all allocated memory not freed yet
2092
in shutdown, and it will also free the ut_list_mutex, so it
2093
should be the last one for all operation */
2096
if (os_thread_count != 0
2097
|| os_event_count != 0
2098
|| os_mutex_count != 0
2099
|| os_fast_mutex_count != 0) {
2101
"InnoDB: Warning: some resources were not"
2102
" cleaned up in shutdown:\n"
2103
"InnoDB: threads %lu, events %lu,"
2104
" os_mutexes %lu, os_fast_mutexes %lu\n",
2105
(ulong) os_thread_count, (ulong) os_event_count,
2106
(ulong) os_mutex_count, (ulong) os_fast_mutex_count);
2109
if (dict_foreign_err_file) {
2110
fclose(dict_foreign_err_file);
2112
if (lock_latest_err_file) {
2113
fclose(lock_latest_err_file);
2116
if (srv_print_verbose_log) {
2117
ut_print_timestamp(stderr);
2119
" InnoDB: Shutdown completed;"
2120
" log sequence number %"PRIu64"\n",
2124
srv_was_started = FALSE;
2125
srv_start_has_been_called = FALSE;
2127
return((int) DB_SUCCESS);
2129
#endif /* !UNIV_HOTBACKUP */