MySQL 8.4.4
Source Code Documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
fil0fil.h
Go to the documentation of this file.
1/*****************************************************************************
2
3Copyright (c) 1995, 2024, Oracle and/or its affiliates.
4
5This program is free software; you can redistribute it and/or modify it under
6the terms of the GNU General Public License, version 2.0, as published by the
7Free Software Foundation.
8
9This program is designed to work with certain software (including
10but not limited to OpenSSL) that is licensed under separate terms,
11as designated in a particular file or component or in included license
12documentation. The authors of MySQL hereby grant you an additional
13permission to link the program and your derivative works with the
14separately licensed software that they have either included with
15the program or referenced in the documentation.
16
17This program is distributed in the hope that it will be useful, but WITHOUT
18ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
19FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0,
20for more details.
21
22You should have received a copy of the GNU General Public License along with
23this program; if not, write to the Free Software Foundation, Inc.,
2451 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
26*****************************************************************************/
27
28/** @file include/fil0fil.h
29 The low-level file system
30
31 Created 10/25/1995 Heikki Tuuri
32 *******************************************************/
33
34#ifndef fil0fil_h
35#define fil0fil_h
36
37#include "univ.i"
38
39#include "dict0types.h"
40#include "fil0types.h"
41#include "log0recv.h"
42#include "page0size.h"
43#ifndef UNIV_HOTBACKUP
44#include "ibuf0types.h"
45#endif /* !UNIV_HOTBACKUP */
46#include "ut0new.h"
47
49#include "sql/dd/object_id.h"
50
51#include <atomic>
52#include <cstdint>
53#include <list>
54#include <vector>
55
56extern ulong srv_fast_shutdown;
57
58/** Maximum number of tablespaces to be scanned by a thread while scanning
59for available tablespaces during server startup. This is a hard maximum.
60If the number of files to be scanned is more than
61FIL_SCAN_MAX_TABLESPACES_PER_THREAD,
62then additional threads will be spawned to scan the additional files in
63parallel. */
65
66/** Maximum number of threads that will be used for scanning the tablespace
67files. This can be further adjusted depending on the number of available
68cores. */
69constexpr size_t FIL_SCAN_MAX_THREADS = 16;
70
71/** Number of threads per core. */
72constexpr size_t FIL_SCAN_THREADS_PER_CORE = 2;
73
74/** Calculate the number of threads that can be spawned to scan the given
75number of files taking into the consideration, number of cores available
76on the machine.
77@param[in] num_files Number of files to be scanned
78@return number of threads to be spawned for scanning the files */
79size_t fil_get_scan_threads(size_t num_files);
80
81/** This tablespace name is used internally during file discovery to open a
82general tablespace before the data dictionary is recovered and available. */
83static constexpr char general_space_name[] = "innodb_general";
84
85/** This tablespace name is used as the prefix for implicit undo tablespaces
86and during file discovery to open an undo tablespace before the DD is
87recovered and available. */
88static constexpr char undo_space_name[] = "innodb_undo";
89
90extern volatile bool recv_recovery_on;
91
92/** Initial size of an UNDO tablespace when it is created new
93or truncated under low load.
94page size | FSP_EXTENT_SIZE | Initial Size | Pages
95----------+------------------+--------------+-------
96 4 KB | 256 pages = 1 MB | 16 MB | 4096
97 8 KB | 128 pages = 1 MB | 16 MB | 2048
98 16 KB | 64 pages = 1 MB | 16 MB | 1024
99 32 KB | 64 pages = 2 MB | 16 MB | 512
100 64 KB | 64 pages = 4 MB | 16 MB | 256 */
101constexpr uint32_t UNDO_INITIAL_SIZE = 16 * 1024 * 1024;
102#define UNDO_INITIAL_SIZE_IN_PAGES \
103 os_offset_t { UNDO_INITIAL_SIZE / srv_page_size }
104
105#ifdef UNIV_HOTBACKUP
106#include <unordered_set>
107using Dir_set = std::unordered_set<std::string>;
108extern Dir_set rem_gen_ts_dirs;
109extern bool replay_in_datadir;
110#endif /* UNIV_HOTBACKUP */
111
112// Forward declaration
113struct trx_t;
114class page_id_t;
115
116using Filenames = std::vector<std::string, ut::allocator<std::string>>;
117using Space_ids = std::vector<space_id_t, ut::allocator<space_id_t>>;
118
119/** File types */
120enum fil_type_t : uint8_t {
121 /** temporary tablespace (temporary undo log or tables) */
123 /** a tablespace that is being imported (no logging until finished) */
125 /** persistent tablespace (for system, undo log or tables) */
127};
128
129/** Result of comparing a path. */
130enum class Fil_state {
131 /** The path matches what was found during the scan. */
132 MATCHES,
133
134 /** No MLOG_FILE_DELETE record and the file could not be found. */
135 MISSING,
136
137 /** A MLOG_FILE_DELETE was found, file was deleted. */
138 DELETED,
139
140 /** Space ID matches but the paths don't match. */
141 MOVED,
142
143 /** Space ID and paths match but dd_table data dir flag is false despite the
144 file being outside default data dir */
146
147 /** Tablespace and/or filename was renamed. The DDL log will handle
148 this case. */
149 RENAMED,
150
151 /** In case of error during comparison. */
153};
154
155struct fil_space_t;
156
157/** File node of a tablespace or the log data space */
159 /** Returns true if the file can be closed. */
160 bool can_be_closed() const;
161 /** Returns true if the file is flushed. */
162 bool is_flushed() const {
165 }
166 /** Sets file to flushed state. */
168
170
171 /** tablespace containing this file */
173
174 /** file name; protected by Fil_shard::m_mutex and log_sys->mutex. */
175 char *name;
176
177 /** whether this file is open. Note: We set the is_open flag after
178 we increase the write the MLOG_FILE_OPEN record to redo log. Therefore
179 we increment the in_use reference count before setting the OPEN flag. */
181
182 /** file handle (valid if is_open) */
184
185 /** event that groups and serializes calls to fsync */
187
188 /** whether the file actually is a raw device or disk partition */
190
191 bool is_offset_valid(os_offset_t byte_offset) const;
192
193 /** size of the file in database pages (0 if not known yet);
194 the possible last incomplete megabyte may be ignored
195 if space->id == 0 */
197
198 /** Size of the file when last flushed, used to force the flush when file
199 grows to keep the filesystem metadata synced when using O_DIRECT_NO_FSYNC */
201
202 /** initial size of the file in database pages;
203 FIL_IBD_FILE_INITIAL_SIZE by default */
205
206 /** maximum size of the file in database pages */
208
209 /** count of pending I/O's; is_open must be true if nonzero */
211
212 /** count of pending flushes; is_open must be true if nonzero */
214
215 /** Set to true when a file is being extended. */
217
218 /** number of writes to the file since the system was started */
220
221 /** the modification_counter of the latest flush to disk */
223
224 /** link to the fil_system->LRU list (keeping track of open files) */
226
227 /** whether the file system of this file supports PUNCH HOLE */
229
230 /** block size to use for punching holes */
232
233 /** whether atomic write is enabled for this file */
235
236 /** FIL_NODE_MAGIC_N */
237 size_t magic_n;
238};
239
240/** Tablespace or log data space */
243 using Files = std::vector<fil_node_t, ut::allocator<fil_node_t>>;
244
245 /** Release the reserved free extents.
246 @param[in] n_reserved number of reserved extents */
247 void release_free_extents(ulint n_reserved);
248
249 /** @return true if the instance is queued for deletion. Guarantees the space
250 is not deleted as long as the fil_shard mutex is not released. */
251 bool is_deleted() const;
252
253 /** @return true if the instance was not queued for deletion. It does not
254 guarantee it is not queued for deletion at the moment. */
255 bool was_not_deleted() const;
256
257 /** Marks the space object for deletion. It will bump the space object version
258 and cause all pages in buffer pool that reference to the current space
259 object version to be stale and be freed on first encounter. */
260 void set_deleted();
261
262#ifndef UNIV_HOTBACKUP
263 /** Returns current version of the space object. It is being bumped when the
264 space is truncated or deleted. Guarantees the version returned is up to date
265 as long as fil_shard mutex is not released.*/
266 uint32_t get_current_version() const;
267
268 /** Returns current version of the space object. It is being bumped when the
269 space is truncated or deleted. It does not guarantee the version is current
270 one.*/
271 uint32_t get_recent_version() const;
272
273 /** Bumps the space object version and cause all pages in buffer pool that
274 reference the current space object version to be stale and be freed on
275 first encounter. */
276 void bump_version();
277
278 /** @return true if this space does not have any more references. Guarantees
279 the result only if true was returned. */
280 bool has_no_references() const;
281
282 /** @return Current number of references to the space. This method
283 should be called only while shutting down the server. Only when there is no
284 background nor user session activity the returned value will be valid. */
285 size_t get_reference_count() const;
286
287 /** Increment the page reference count. */
288 void inc_ref() noexcept {
289 /* We assume space is protected from being removed either through
290 n_pending_ops or m_n_ref_count already bumped, OR MDL latch is
291 protecting it, OR it is a private space. Bumping the n_pending_ops
292 can be done only under fil shard mutex and stopping new bumps is also
293 done under this mutex */
294 const auto o = m_n_ref_count.fetch_add(1);
295 ut_a(o != std::numeric_limits<size_t>::max());
296 }
297
298 /** Decrement the page reference count. */
299 void dec_ref() noexcept {
300 const auto o = m_n_ref_count.fetch_sub(1);
301 ut_a(o >= 1);
302 }
303#endif /* !UNIV_HOTBACKUP */
304
305#ifdef UNIV_DEBUG
306 /** Print the extent descriptor pages of this tablespace into
307 the given output stream.
308 @param[in] out the output stream.
309 @return the output stream. */
310 std::ostream &print_xdes_pages(std::ostream &out) const;
311
312 /** Print the extent descriptor pages of this tablespace into
313 the given file.
314 @param[in] filename the output file name. */
315 void print_xdes_pages(const char *filename) const;
316#endif /* UNIV_DEBUG */
317
318 public:
320 using Flush_observers = std::vector<Observer *, ut::allocator<Observer *>>;
321
322 /** When the tablespace was extended last. */
324
325 /** Extend undo tablespaces by so many pages. */
327
328 /** When an undo tablespace has been initialized with required header pages,
329 that size is recorded here. Auto-truncation happens when the file size
330 becomes bigger than both this and srv_max_undo_log_size. */
332
333 /** Tablespace name */
334 char *name{};
335
336 /** Tablespace ID */
338
339 /** Initializes fields. This could be replaced by a constructor if SunPro is
340 compiling it correctly. */
341 void initialize() noexcept {
343 new (&files) fil_space_t::Files();
344
345#ifndef UNIV_HOTBACKUP
346 new (&m_version) std::atomic<uint32_t>;
347 new (&m_n_ref_count) std::atomic_size_t;
348 new (&m_deleted) std::atomic<bool>;
349#endif /* !UNIV_HOTBACKUP */
350 }
351
352 private:
353#ifndef UNIV_HOTBACKUP
354 /** All pages in the buffer pool that reference this fil_space_t instance with
355 version before this version can be lazily freed or reused as free pages.
356 They should be rejected if there is an attempt to write them to disk.
357
358 Writes to m_version are guarded by the exclusive MDL/table lock latches
359 acquired by the caller, as stated in docs. Note that the Fil_shard mutex seems
360 to be latched in 2 of 3 usages only, so is not really an alternative.
361
362 Existence of the space object during reads is assured during these operations:
363 1. when read by the buf_page_init_low on page read/creation - the caller must
364 have acquired shared MDL/table lock latches.
365 2. when read on buf_page_t::is_stale() on page access for a query or for purge
366 operation. The caller must have acquired shared MDL/table lock latches.
367 3. when read on buf_page_t::is_stale() on page access from LRU list, flush
368 list or whatever else. Here, the fact that the page has latched the space
369 using the reference counting system is what guards the space existence.
370
371 When reading the value for the page being created with buf_page_init_low we
372 have the MDL latches on table that is in tablespace or the tablespace alone,
373 so we won't be able to bump m_version until they are released, so we will
374 read the current value of the version. When reading the value for the page
375 validation with buf_page_t::is_stale(), we will either:
376 a) have the MDL latches required in at least S mode in case we need to be
377 certain if the page is stale, to use it in a query or in purge operation, or
378 b) in case we don't not have the MDL latches, we may read an outdated value.
379 This happens for pages that are seen during for example LRU or flush page
380 scans. These pages are not needed for the query itself. The read is to decide
381 if the page can be safely discarded. Reading incorrect value can lead to no
382 action being executed. Reading incorrect value can't lead to page being
383 incorrectly evicted.
384 */
385 std::atomic<uint32_t> m_version{};
386
387 /** Number of buf_page_t entries that point to this instance.
388
389 This field is guarded by the Fil_shard mutex and the "reference
390 count system". The reference count system here is allowing to take a "latch"
391 on the space by incrementing the reference count, and release it by
392 decrementing it.
393
394 The increments are possible from two places:
395 1. buf_page_init_low is covered by the existing MDL/table lock latches only
396 and the fact that the space it is using is a current version of the space
397 (the version itself is also guarded by these MDL/table lock latches). It
398 implicitly acquires the "reference count system" latch after this operation.
399 2. buf_page_t::buf_page_t(const buf_page_t&) copy constructor - increases the
400 value, but it assumes the page being copied from has "reference count system"
401 latch so the reference count is greater than 0 during this constructor call.
402
403 For decrementing the reference count is itself a latch allowing for the safe
404 decrement.
405
406 The value is checked for being 0 in Fil_shard::checkpoint under the Fil_shard
407 mutex, and only if the space is deleted.
408 Observing m_n_ref_count==0 might trigger freeing the object. No other thread
409 can be during the process of incrementing m_n_ref_count from 0 to 1 in
410 parallel to this check. This is impossible for following reasons. Recall the
411 only two places where we do increments listed above:
412 1. If the space is deleted, then MDL/table lock latches guarantee there are
413 no users that would be able to see it as the current version of space and thus
414 will not attempt to increase the reference value from 0.
415 2. The buf_page_t copy constructor can increase it, but it assumes the page
416 being copied from has "reference count system" latch so the reference count is
417 greater than 0 during this constructor call.
418
419 There is also an opposite race possible: while we check for ref count being
420 zero, another thread may be decrementing it in parallel, and we might miss
421 that if we check too soon. This is benign, as it will result in us not
422 reclaiming the memory we could (but not have to) free, and will return to the
423 check on next checkpoint.
424 */
425 std::atomic_size_t m_n_ref_count{};
426#endif /* !UNIV_HOTBACKUP */
427
428 /** true if the tablespace is marked for deletion. */
429 std::atomic_bool m_deleted{};
430
431 /** true if bulk operation is in progress. */
432 std::atomic_bool m_is_bulk{false};
433
434 /** true if bulk operation is in progress. */
435 std::atomic<uint64_t> m_bulk_extend_size;
436
437 public:
438 /** Begin bulk operation on the space.
439 @param[in] extend_size space extension size for bulk operation */
440 void begin_bulk_operation(uint64_t extend_size) {
441 m_is_bulk.store(true);
442 m_bulk_extend_size.store(extend_size);
443 }
444
445 /** End bulk operation on the space. */
446 void end_bulk_operation() { m_is_bulk.store(false); }
447
448 /** @return true, if bulk operation in progress. */
449 bool is_bulk_operation_in_progress() const { return m_is_bulk.load(); }
450
451 /** @return automatic extension size for space. */
452 uint64_t get_auto_extend_size();
453
454 /** @return true if added space should be initialized while extending space.
455 */
457
458 /** true if we want to rename the .ibd file of tablespace and
459 want to temporarily prevent other threads from opening the file that is being
460 renamed. */
462
463 /** Throttles writing to log a message about long waiting for file to perform
464 rename. */
466
467 /** We set this true when we start deleting a single-table
468 tablespace. When this is set following new ops are not allowed:
469 * read IO request
470 * ibuf merge
471 * file flush
472 Note that we can still possibly have new write operations because we
473 don't check this flag when doing flush batches. */
475
476#ifdef UNIV_DEBUG
477 /** Reference count for operations who want to skip redo log in
478 the file space in order to make fsp_space_modify_check pass. */
480#endif /* UNIV_DEBUG */
481
482 /** Purpose */
484
485 /** Files attached to this tablespace. Note: Only the system tablespace
486 can have multiple files, this is a legacy issue. */
488
489 /** Tablespace file size in pages; 0 if not known yet */
491
492 /** FSP_SIZE in the tablespace header; 0 if not known yet */
494
495 /** Autoextend size */
497
498 /** Length of the FSP_FREE list */
499 uint32_t free_len{};
500
501 /** Contents of FSP_FREE_LIMIT */
503
504 /** Tablespace flags; see fsp_flags_is_valid() and
505 page_size_t(ulint) (constructor).
506 This is protected by space->latch and tablespace MDL */
507 uint32_t flags{};
508
509 /** Number of reserved free extents for ongoing operations like
510 B-tree page split */
512
513 /** This is positive when flushing the tablespace to disk;
514 dropping of the tablespace is forbidden if this is positive */
516
517 /** This is positive when we have pending operations against this
518 tablespace. The pending operations can be ibuf merges or lock
519 validation code trying to read a block. Dropping of the tablespace
520 is forbidden if this is positive. Protected by Fil_shard::m_mutex. */
521 uint32_t n_pending_ops{};
522
523#ifndef UNIV_HOTBACKUP
524 /** Latch protecting the file space storage allocation */
526#endif /* !UNIV_HOTBACKUP */
527
528 /** List of spaces with at least one unflushed file we have
529 written to */
531
532 /** true if this space is currently in unflushed_spaces */
534
535 /** Compression algorithm */
537
538 /** Encryption metadata */
540
541 /** Encryption is in progress */
543
544 /** Flush lsn of header page. It is used only during recovery */
546
547 /** FIL_SPACE_MAGIC_N */
549
550 /** System tablespace */
552
553 /** Check if the tablespace is compressed.
554 @return true if compressed, false otherwise. */
555 [[nodiscard]] bool is_compressed() const noexcept {
557 }
558
559 /** Check if the tablespace is encrypted.
560 @return true if encrypted, false otherwise. */
561 [[nodiscard]] bool is_encrypted() const noexcept {
563 }
564
565 /** Check if the encryption details, like the encryption key, type and
566 other details, that are needed to carry out encryption are available.
567 @return true if encryption can be done, false otherwise. */
568 [[nodiscard]] bool can_encrypt() const noexcept {
570 }
571
572 public:
573 /** Get the file node corresponding to the given page number of the
574 tablespace.
575 @param[in,out] page_no Caller passes the page number within a tablespace.
576 After return, it contains the page number within
577 the returned file node. For tablespaces containing
578 only one file, the given page_no will not change.
579 @return the file node object. */
580 [[nodiscard]] fil_node_t *get_file_node(page_no_t *page_no) noexcept;
581};
582
583/** Value of fil_space_t::magic_n */
584constexpr size_t FIL_SPACE_MAGIC_N = 89472;
585
586/** Value of fil_node_t::magic_n */
587constexpr size_t FIL_NODE_MAGIC_N = 89389;
588
589/** Common InnoDB file extensions */
592 IBD = 1,
593 CFG = 2,
594 CFP = 3,
595 IBT = 4,
596 IBU = 5,
597 DWR = 6,
598 BWR = 7
600
601extern const char *dot_ext[];
602
603#define DOT_IBD dot_ext[IBD]
604#define DOT_CFG dot_ext[CFG]
605#define DOT_CFP dot_ext[CFP]
606#define DOT_IBT dot_ext[IBT]
607#define DOT_IBU dot_ext[IBU]
608#define DOT_DWR dot_ext[DWR]
609
610#ifdef _WIN32
611/* Initialization of m_abs_path() produces warning C4351:
612"new behavior: elements of array '...' will be default initialized."
613See https://msdn.microsoft.com/en-us/library/1ywe7hcy.aspx */
614#pragma warning(disable : 4351)
615#endif /* _WIN32 */
616
617/** Wrapper for a path to a directory that may or may not exist. */
618class Fil_path {
619 public:
620 /** schema '/' table separator */
621 static constexpr auto DB_SEPARATOR = '/';
622
623 /** OS specific path separator. */
624 static constexpr auto OS_SEPARATOR = OS_PATH_SEPARATOR;
625
626 /** Directory separators that are supported. */
627 static constexpr auto SEPARATOR = "\\/";
628#ifdef _WIN32
629 static constexpr auto DOT_SLASH = ".\\";
630 static constexpr auto DOT_DOT_SLASH = "..\\";
631 static constexpr auto SLASH_DOT_DOT_SLASH = "\\..\\";
632#else
633 static constexpr auto DOT_SLASH = "./";
634 static constexpr auto DOT_DOT_SLASH = "../";
635 static constexpr auto SLASH_DOT_DOT_SLASH = "/../";
636#endif /* _WIN32 */
637
638 /** Various types of file paths. */
640
641 /** Default constructor. Defaults to MySQL_datadir_path. */
642 Fil_path();
643
644 /** Constructor
645 @param[in] path Path, not necessarily NUL terminated
646 @param[in] len Length of path
647 @param[in] normalize_path If false, it's the callers responsibility to
648 ensure that the path is normalized. */
649 explicit Fil_path(const char *path, size_t len, bool normalize_path = false);
650
651 /** Constructor
652 @param[in] path Path, not necessarily NUL terminated
653 @param[in] normalize_path If false, it's the callers responsibility to
654 ensure that the path is normalized. */
655 explicit Fil_path(const char *path, bool normalize_path = false);
656
657 /** Constructor
658 @param[in] path pathname (may also include the file basename)
659 @param[in] normalize_path If false, it's the callers responsibility to
660 ensure that the path is normalized. */
661 explicit Fil_path(const std::string &path, bool normalize_path = false);
662
663 /** Implicit type conversion
664 @return pointer to m_path.c_str() */
665 [[nodiscard]] operator const char *() const { return m_path.c_str(); }
666
667 /** Explicit type conversion
668 @return pointer to m_path.c_str() */
669 [[nodiscard]] const char *operator()() const { return m_path.c_str(); }
670
671 /** @return the value of m_path */
672 [[nodiscard]] const std::string &path() const { return (m_path); }
673
674 /** @return the length of m_path */
675 [[nodiscard]] size_t len() const { return (m_path.length()); }
676
677 /** Return the absolute path by value. If m_abs_path is null, calculate
678 it and return it by value without trying to reset this const object.
679 m_abs_path can be empty if the path did not exist when this object
680 was constructed.
681 @return the absolute path by value. */
682 [[nodiscard]] const std::string abs_path() const {
683 if (m_abs_path.empty()) {
684 return (get_real_path(m_path));
685 }
686
687 return (m_abs_path);
688 }
689
690 /** @return the length of m_abs_path */
691 [[nodiscard]] size_t abs_len() const { return (m_abs_path.length()); }
692
693 /** Determine if this path is equal to the other path.
694 @param[in] other path to compare to
695 @return true if the paths are the same */
696 bool operator==(const Fil_path &other) const { return (is_same_as(other)); }
697
698 /** Check if m_path is the same as this other path.
699 @param[in] other directory path to compare to
700 @return true if m_path is the same as path */
701 [[nodiscard]] bool is_same_as(const Fil_path &other) const;
702
703 /** Check if this path is the same as the other path.
704 @param[in] other directory path to compare to
705 @return true if this path is the same as the other path */
706 [[nodiscard]] bool is_same_as(const std::string &other) const;
707
708 /** Get the absolute directory of this path */
709 [[nodiscard]] Fil_path get_abs_directory() const;
710
711 /** Check if the directory to path is same as directory as the other path.
712 @param[in] other directory path to compare to
713 @return true if this path directory is the same as the other path directory */
714 [[nodiscard]] bool is_dir_same_as(const Fil_path &other) const;
715
716 /** Check if two path strings are equal. Put them into Fil_path objects
717 so that they can be compared correctly.
718 @param[in] first first path to check
719 @param[in] second socond path to check
720 @return true if these two paths are the same */
721 [[nodiscard]] static bool is_same_as(const std::string &first,
722 const std::string &second) {
723 if (first.empty() || second.empty()) {
724 return (false);
725 }
726
727 Fil_path first_path(first);
728 std::string first_abs = first_path.abs_path();
729 trim_separator(first_abs);
730
731 Fil_path second_path(second);
732 std::string second_abs = second_path.abs_path();
733 trim_separator(second_abs);
734
735 return (first_abs == second_abs);
736 }
737
738 /** Splits the path into directory and file name parts.
739 @param[in] path path to split
740 @return [directory, file] for the path */
741 [[nodiscard]] static std::pair<std::string, std::string> split(
742 const std::string &path);
743
744 /** Check if m_path is the parent of the other path.
745 @param[in] other path to compare to
746 @return true if m_path is an ancestor of name */
747 [[nodiscard]] bool is_ancestor(const Fil_path &other) const;
748
749 /** Check if this Fil_path is an ancestor of the other path.
750 @param[in] other path to compare to
751 @return true if this Fil_path is an ancestor of the other path */
752 [[nodiscard]] bool is_ancestor(const std::string &other) const;
753
754 /** Check if the first path is an ancestor of the second.
755 Do not assume that these paths have been converted to real paths
756 and are ready to compare. If the two paths are the same
757 we will return false.
758 @param[in] first Parent path to check
759 @param[in] second Descendent path to check
760 @return true if the first path is an ancestor of the second */
761 [[nodiscard]] static bool is_ancestor(const std::string &first,
762 const std::string &second) {
763 if (first.empty() || second.empty()) {
764 return (false);
765 }
766
767 Fil_path ancestor(first);
768 Fil_path descendant(second);
769
770 return (ancestor.is_ancestor(descendant));
771 }
772
773 /** @return true if m_path exists and is a file. */
774 [[nodiscard]] bool is_file_and_exists() const;
775
776 /** @return true if m_path exists and is a directory. */
777 [[nodiscard]] bool is_directory_and_exists() const;
778
779 /** This validation is only for ':'.
780 @return true if the path is valid. */
781 [[nodiscard]] bool is_valid() const;
782
783 /** Determine if m_path contains a circular section like "/anydir/../"
784 Fil_path::normalize() must be run before this.
785 @return true if a circular section if found, false if not */
786 [[nodiscard]] bool is_circular() const;
787
788 /** Determine if the file or directory is considered HIDDEN.
789 Most file systems identify the HIDDEN attribute by a '.' preceding the
790 basename. On Windows, a HIDDEN path is identified by a file attribute.
791 We will use the preceding '.' to indicate a HIDDEN attribute on ALL
792 file systems so that InnoDB tablespaces and their directory structure
793 remain portable.
794 @param[in] path The full or relative path of a file or directory.
795 @return true if the directory or path is HIDDEN. */
796 static bool is_hidden(std::string path);
797
798#ifdef _WIN32
799 /** Use the WIN32_FIND_DATA struncture to determine if the file or
800 directory is HIDDEN. Consider a SYSTEM attribute also as an indicator
801 that it is HIDDEN to InnoDB.
802 @param[in] dirent A directory entry obtained from a call to FindFirstFile()
803 or FindNextFile()
804 @return true if the directory or path is HIDDEN. */
805 static bool is_hidden(WIN32_FIND_DATA &dirent);
806#endif /* WIN32 */
807
808 /** Remove quotes e.g., 'a;b' or "a;b" -> a;b.
809 This will only remove the quotes if they are matching on the whole string.
810 This will not work if each delimited string is quoted since this is called
811 before the string is parsed.
812 @return pathspec with the quotes stripped */
813 static std::string remove_quotes(const char *pathspec) {
814 std::string path(pathspec);
815
816 ut_ad(!path.empty());
817
818 if (path.size() >= 2 && ((path.front() == '\'' && path.back() == '\'') ||
819 (path.front() == '"' && path.back() == '"'))) {
820 path.erase(0, 1);
821 path.erase(path.size() - 1);
822 }
823
824 return (path);
825 }
826
827 /** Determine if a path is a relative path or not.
828 @param[in] path OS directory or file path to evaluate
829 @retval true if the path is relative
830 @retval false if the path is absolute or file_name_only */
831 [[nodiscard]] static bool is_relative_path(const std::string &path) {
832 return (type_of_path(path) == relative);
833 }
834
835 /** @return true if the path is an absolute path. */
836 [[nodiscard]] bool is_absolute_path() const {
837 return (type_of_path(m_path) == absolute);
838 }
839
840 /** Determine if a path is an absolute path or not.
841 @param[in] path OS directory or file path to evaluate
842 @retval true if the path is absolute
843 @retval false if the path is relative or file_name_only */
844 [[nodiscard]] static bool is_absolute_path(const std::string &path) {
845 return (type_of_path(path) == absolute);
846 }
847
848 /** Determine what type of path is provided.
849 @param[in] path OS directory or file path to evaluate
850 @return the type of filepath; 'absolute', 'relative',
851 'file_name_only', or 'invalid' if the path is empty. */
852 [[nodiscard]] static path_type type_of_path(const std::string &path) {
853 if (path.empty()) {
854 return (invalid);
855 }
856
857 /* The most likely type is a file name only with no separators. */
858 auto first_separator = path.find_first_of(SEPARATOR);
859 if (first_separator == std::string::npos) {
860 return (file_name_only);
861 }
862
863 /* Any string that starts with an OS_SEPARATOR is
864 an absolute path. This includes any OS and even
865 paths like "\\Host\share" on Windows. */
866 if (first_separator == 0) {
867 return (absolute);
868 }
869
870#ifdef _WIN32
871 /* Windows may have an absolute path like 'A:\' */
872 if (path.length() >= 3 && isalpha(path.at(0)) && path.at(1) == ':' &&
873 (path.at(2) == '\\' || path.at(2) == '/')) {
874 return (absolute);
875 }
876#endif /* _WIN32 */
877
878 /* Since it contains separators and is not an absolute path,
879 it must be a relative path. */
880 return (relative);
881 }
882
883 /* Check if the path is prefixed with pattern.
884 @return true if prefix matches */
885 [[nodiscard]] static bool has_prefix(const std::string &path,
886 const std::string prefix) {
887 return (path.size() >= prefix.size() &&
888 std::equal(prefix.begin(), prefix.end(), path.begin()));
889 }
890
891 /** Normalize a directory path for the current OS:
892 On Windows, we convert '/' to '\', else we convert '\' to '/'.
893 @param[in,out] path Directory and file path */
894 static void normalize(std::string &path) {
895 for (auto &c : path) {
896 if (c == OS_PATH_SEPARATOR_ALT) {
897 c = OS_SEPARATOR;
898 }
899 }
900 }
901
902 /** Normalize a directory path for the current OS:
903 On Windows, we convert '/' to '\', else we convert '\' to '/'.
904 @param[in,out] path A NUL terminated path */
905 static void normalize(char *path) {
906 for (auto ptr = path; *ptr; ++ptr) {
907 if (*ptr == OS_PATH_SEPARATOR_ALT) {
908 *ptr = OS_SEPARATOR;
909 }
910 }
911 }
912
913 /** Convert a path string to lower case using the CHARSET my_charset_filename.
914 @param[in,out] path Directory and file path */
915 static void to_lower(std::string &path) {
916 for (auto &c : path) {
918 }
919 }
920
921 /** @return true if the path exists and is a file . */
922 [[nodiscard]] static os_file_type_t get_file_type(const std::string &path);
923
924 /** Return a string to display the file type of a path.
925 @param[in] path path name
926 @return true if the path exists and is a file . */
927 static const char *get_file_type_string(const std::string &path);
928
929 /** Return a string to display the file type of a path.
930 @param[in] type OS file type
931 @return true if the path exists and is a file . */
932 static const char *get_file_type_string(os_file_type_t type);
933
934 /** Get the real path for a directory or a file name. This path can be
935 used to compare with another absolute path. It will be converted to
936 lower case on case insensitive file systems and if it is a directory,
937 it will end with a directory separator. The call to my_realpath() may
938 fail on non-Windows platforms if the path does not exist. If so, the
939 parameter 'force' determines what to return.
940 @param[in] path directory or filename to convert to a real path
941 @param[in] force if true and my_realpath() fails, use the path provided.
942 if false and my_realpath() fails, return a null string.
943 @return the absolute path prepared for making comparisons with other real
944 paths. */
945 [[nodiscard]] static std::string get_real_path(const std::string &path,
946 bool force = true);
947
948 /** Get the basename of the file path. This is the file name without any
949 directory separators. In other words, the file name after the last separator.
950 @param[in] filepath The name of a file, optionally with a path. */
951 [[nodiscard]] static std::string get_basename(const std::string &filepath);
952
953 /** Separate the portion of a directory path that exists and the portion that
954 does not exist.
955 @param[in] path Path to evaluate
956 @param[in,out] ghost The portion of the path that does not exist.
957 @return the existing portion of a path. */
958 [[nodiscard]] static std::string get_existing_path(const std::string &path,
959 std::string &ghost);
960
961 /** Check if the name is an undo tablespace name.
962 @param[in] name Tablespace name
963 @return true if it is an undo tablespace name */
964 [[nodiscard]] static bool is_undo_tablespace_name(const std::string &name);
965
966 /** Check if the file has the the specified suffix
967 @param[in] sfx suffix to look for
968 @param[in] path Filename to check
969 @return true if it has the the ".ibd" suffix. */
970 static bool has_suffix(ib_file_suffix sfx, const std::string &path) {
971 const auto suffix = dot_ext[sfx];
972 size_t len = strlen(suffix);
973
974 return (path.size() >= len &&
975 path.compare(path.size() - len, len, suffix) == 0);
976 }
977
978 /** Check if the file has the the specified suffix and truncate
979 @param[in] sfx suffix to look for
980 @param[in,out] path Filename to check
981 @return true if the suffix is found and truncated. */
982 static bool truncate_suffix(ib_file_suffix sfx, std::string &path) {
983 const auto suffix = dot_ext[sfx];
984 size_t len = strlen(suffix);
985
986 if (path.size() < len ||
987 path.compare(path.size() - len, len, suffix) != 0) {
988 return (false);
989 }
990
991 path.resize(path.size() - len);
992 return (true);
993 }
994
995 /** Check if a character is a path separator ('\' or '/')
996 @param[in] c Character to check
997 @return true if it is a separator */
998 static bool is_separator(char c) { return (c == '\\' || c == '/'); }
999
1000 /** If the last character of a directory path is a separator ('\' or '/')
1001 trim it off the string.
1002 @param[in] path file system path */
1003 static void trim_separator(std::string &path) {
1004 if (!path.empty() && is_separator(path.back())) {
1005 path.resize(path.size() - 1);
1006 }
1007 }
1008
1009 /** If the last character of a directory path is NOT a separator,
1010 append a separator to the path.
1011 NOTE: We leave it up to the caller to assure that the path is a directory
1012 and not a file since if that directory does not yet exist, this function
1013 cannot tell the difference.
1014 @param[in] path file system path */
1015 static void append_separator(std::string &path) {
1016 if (!path.empty() && !is_separator(path.back())) {
1017 path.push_back(OS_SEPARATOR);
1018 }
1019 }
1020
1021 /** Allocate and build a file name from a path, a table or
1022 tablespace name and a suffix.
1023 @param[in] path_in nullptr or the directory path or
1024 the full path and filename
1025 @param[in] name_in nullptr if path is full, or
1026 Table/Tablespace name
1027 @param[in] ext the file extension to use
1028 @param[in] trim whether last name on the path should
1029 be trimmed
1030 @return own: file name; must be freed by ut::free() */
1031 [[nodiscard]] static char *make(const std::string &path_in,
1032 const std::string &name_in,
1033 ib_file_suffix ext, bool trim = false);
1034
1035 /** Allocate and build a CFG file name from a path.
1036 @param[in] path_in Full path to the filename
1037 @return own: file name; must be freed by ut::free() */
1038 [[nodiscard]] static char *make_cfg(const std::string &path_in) {
1039 return (make(path_in, "", CFG));
1040 }
1041
1042 /** Allocate and build a CFP file name from a path.
1043 @param[in] path_in Full path to the filename
1044 @return own: file name; must be freed by ut::free() */
1045 [[nodiscard]] static char *make_cfp(const std::string &path_in) {
1046 return (make(path_in, "", CFP));
1047 }
1048
1049 /** Allocate and build a file name from a path, a table or
1050 tablespace name and a suffix.
1051 @param[in] path_in nullptr or the directory path or
1052 the full path and filename
1053 @param[in] name_in nullptr if path is full, or
1054 Table/Tablespace name
1055 @return own: file name; must be freed by ut::free() */
1056 [[nodiscard]] static char *make_ibd(const std::string &path_in,
1057 const std::string &name_in) {
1058 return (make(path_in, name_in, IBD));
1059 }
1060
1061 /** Allocate and build a file name from a path, a table or
1062 tablespace name and a suffix.
1063 @param[in] name_in Table/Tablespace name
1064 @return own: file name; must be freed by ut::free() */
1065 [[nodiscard]] static char *make_ibd_from_table_name(
1066 const std::string &name_in) {
1067 return (make("", name_in, IBD));
1068 }
1069
1070 /** Create an IBD path name after replacing the basename in an old path
1071 with a new basename. The old_path is a full path name including the
1072 extension. The tablename is in the normal form "schema/tablename".
1073 @param[in] path_in Pathname
1074 @param[in] name_in Contains new base name
1075 @param[in] extn File extension
1076 @return new full pathname */
1077 [[nodiscard]] static std::string make_new_path(const std::string &path_in,
1078 const std::string &name_in,
1079 ib_file_suffix extn);
1080
1081 /** Parse file-per-table file name and build Innodb dictionary table name.
1082 @param[in] file_path File name with complete path
1083 @param[in] extn File extension
1084 @param[out] dict_name Innodb dictionary table name
1085 @return true, if successful. */
1086 static bool parse_file_path(const std::string &file_path, ib_file_suffix extn,
1087 std::string &dict_name);
1088
1089 /** This function reduces a null-terminated full remote path name
1090 into the path that is sent by MySQL for DATA DIRECTORY clause.
1091 It replaces the 'databasename/tablename.ibd' found at the end of the
1092 path with just 'tablename'.
1093
1094 Since the result is always smaller than the path sent in, no new
1095 memory is allocated. The caller should allocate memory for the path
1096 sent in. This function manipulates that path in place. If the path
1097 format is not as expected, set data_dir_path to "" and return.
1098
1099 The result is used to inform a SHOW CREATE TABLE command.
1100 @param[in,out] data_dir_path Full path/data_dir_path */
1101 static void make_data_dir_path(char *data_dir_path);
1102
1103#ifndef UNIV_HOTBACKUP
1104 /** Check if the filepath provided is in a valid placement.
1105 This routine is run during file discovery at startup.
1106 1) File-per-table must be in a dir named for the schema.
1107 2) File-per-table must not be in the datadir.
1108 3) General tablespace must not be under the datadir.
1109 @param[in] space_name tablespace name
1110 @param[in] space_id tablespace ID
1111 @param[in] fsp_flags tablespace flags
1112 @param[in] path scanned realpath to an existing file to validate
1113 @retval true if the filepath is a valid datafile location */
1114 static bool is_valid_location(const char *space_name, space_id_t space_id,
1115 uint32_t fsp_flags, const std::string &path);
1116
1117 /** Check if the implicit filepath is immediately within a dir named for
1118 the schema.
1119 @param[in] space_name tablespace name
1120 @param[in] path scanned realpath to an existing file to validate
1121 @retval true if the filepath is valid */
1122 static bool is_valid_location_within_db(const char *space_name,
1123 const std::string &path);
1124
1125 /** Convert filename to the file system charset format.
1126 @param[in,out] name Filename to convert */
1127 static void convert_to_filename_charset(std::string &name);
1128
1129 /** Convert to lower case using the file system charset.
1130 @param[in,out] path Filepath to convert */
1131 static void convert_to_lower_case(std::string &path);
1132
1133#endif /* !UNIV_HOTBACKUP */
1134
1135 protected:
1136 /** Path to a file or directory. */
1137 std::string m_path;
1138
1139 /** A full absolute path to the same file. */
1140 std::string m_abs_path;
1141};
1142
1143/** The MySQL server --datadir value */
1145
1146/** The MySQL server --innodb-undo-directory value */
1148
1149/** The undo path is different from any other known directory. */
1150extern bool MySQL_undo_path_is_unique;
1151
1152/** Initial size of a single-table tablespace in pages */
1153constexpr size_t FIL_IBD_FILE_INITIAL_SIZE = 7;
1154constexpr size_t FIL_IBT_FILE_INITIAL_SIZE = 5;
1155
1156/** An empty tablespace (CREATE TABLESPACE) has minimum
1157of 4 pages and an empty CREATE TABLE (file_per_table) has 6 pages.
1158Minimum of these two is 4 */
1160
1161/** 'null' (undefined) page offset in the context of file spaces */
1162constexpr page_no_t FIL_NULL = std::numeric_limits<page_no_t>::max();
1163
1164/** Maximum Page Number, one less than FIL_NULL */
1165constexpr page_no_t PAGE_NO_MAX = std::numeric_limits<page_no_t>::max() - 1;
1166
1167/** Unknown space id */
1168constexpr space_id_t SPACE_UNKNOWN = std::numeric_limits<space_id_t>::max();
1169
1170/* Space address data type; this is intended to be used when
1171addresses accurate to a byte are stored in file pages. If the page part
1172of the address is FIL_NULL, the address is considered undefined. */
1173
1174/** 'type' definition in C: an address stored in a file page is a
1175string of bytes */
1177
1178/** File space address */
1180 /* Default constructor */
1182
1183 /** Constructor
1184 @param[in] p Logical page number
1185 @param[in] boff Offset within the page */
1186 fil_addr_t(page_no_t p, uint32_t boff) : page(p), boffset(boff) {}
1187
1188 /** Compare to instances
1189 @param[in] rhs Instance to compare with
1190 @return true if the page number and page offset are equal */
1191 bool is_equal(const fil_addr_t &rhs) const {
1192 return (page == rhs.page && boffset == rhs.boffset);
1193 }
1194
1195 /** Check if the file address is null.
1196 @return true if null */
1197 bool is_null() const { return (page == FIL_NULL && boffset == 0); }
1198
1199 /** Print a string representation.
1200 @param[in,out] out Stream to write to */
1201 std::ostream &print(std::ostream &out) const {
1202 out << "[fil_addr_t: page=" << page << ", boffset=" << boffset << "]";
1203
1204 return (out);
1205 }
1206
1207 /** Page number within a space */
1209
1210 /** Byte offset within the page */
1211 uint32_t boffset;
1212};
1213
1214/* For printing fil_addr_t to a stream.
1215@param[in,out] out Stream to write to
1216@param[in] obj fil_addr_t instance to write */
1217inline std::ostream &operator<<(std::ostream &out, const fil_addr_t &obj) {
1218 return (obj.print(out));
1219}
1220
1221/** The null file address */
1223
1224using page_type_t = uint16_t;
1225
1226/** File page types (values of FIL_PAGE_TYPE) @{ */
1227/** B-tree node */
1228constexpr page_type_t FIL_PAGE_INDEX = 17855;
1229
1230/** R-tree node */
1231constexpr page_type_t FIL_PAGE_RTREE = 17854;
1232
1233/** Tablespace SDI Index page */
1234constexpr page_type_t FIL_PAGE_SDI = 17853;
1235
1236/** This page type is unused. */
1238
1239/** Undo log page */
1241
1242/** Index node */
1244
1245/** Insert buffer free list */
1247
1248/* File page types introduced in MySQL/InnoDB 5.1.7 */
1249/** Freshly allocated page */
1251
1252/** Insert buffer bitmap */
1254
1255/** System page */
1257
1258/** Transaction system data */
1260
1261/** File space header */
1263
1264/** Extent descriptor page */
1266
1267/** Uncompressed BLOB page */
1269
1270/** First compressed BLOB page */
1272
1273/** Subsequent compressed BLOB page */
1275
1276/** In old tablespaces, garbage in FIL_PAGE_TYPE is replaced with
1277this value when flushing pages. */
1279
1280/** Compressed page */
1282
1283/** Encrypted page */
1285
1286/** Compressed and Encrypted page */
1288
1289/** Encrypted R-tree page */
1291
1292/** Uncompressed SDI BLOB page */
1294
1295/** Compressed SDI BLOB page */
1297
1298/** Legacy doublewrite buffer page. */
1300
1301/** Rollback Segment Array page */
1303
1304/** Index pages of uncompressed LOB */
1306
1307/** Data pages of uncompressed LOB */
1309
1310/** The first page of an uncompressed LOB */
1312
1313/** The first page of a compressed LOB */
1315
1316/** Data pages of compressed LOB */
1318
1319/** Index pages of compressed LOB. This page contains an array of
1320z_index_entry_t objects.*/
1322
1323/** Fragment pages of compressed LOB. */
1325
1326/** Index pages of fragment pages (compressed LOB). */
1328
1329/** Note the highest valid non-index page_type_t. */
1331
1332/** Check whether the page type is index (Btree or Rtree or SDI) type */
1333inline bool fil_page_type_is_index(page_type_t page_type) {
1334 return page_type == FIL_PAGE_INDEX || page_type == FIL_PAGE_SDI ||
1335 page_type == FIL_PAGE_RTREE;
1336}
1337
1338/** Get the file page type.
1339@param[in] page File page
1340@return page type */
1342 return (static_cast<page_type_t>(mach_read_from_2(page + FIL_PAGE_TYPE)));
1343}
1344
1345/** Check whether the page is index page (either regular Btree index or Rtree
1346index.
1347@param[in] page page frame whose page type is to be checked. */
1348inline bool fil_page_index_page_check(const byte *page) {
1350 const bool is_idx = fil_page_type_is_index(type);
1351 return is_idx;
1352}
1353
1354/** @} */
1355
1356/** Number of pending tablespace flushes */
1357extern std::atomic<std::uint64_t> fil_n_pending_tablespace_flushes;
1358
1359/** Number of files currently open */
1360extern std::atomic_size_t fil_n_files_open;
1361
1362/** Look up a tablespace.
1363The caller should hold an InnoDB table lock or a MDL that prevents
1364the tablespace from being dropped during the operation,
1365or the caller should be in single-threaded crash recovery mode
1366(no user connections that could drop tablespaces).
1367If this is not the case, fil_space_acquire() and fil_space_release()
1368should be used instead.
1369@param[in] space_id Tablespace ID
1370@return tablespace, or nullptr if not found */
1371[[nodiscard]] fil_space_t *fil_space_get(space_id_t space_id);
1372
1373#ifndef UNIV_HOTBACKUP
1374/** Returns the latch of a file space.
1375@param[in] space_id Tablespace ID
1376@return latch protecting storage allocation */
1377[[nodiscard]] rw_lock_t *fil_space_get_latch(space_id_t space_id);
1378
1379#ifdef UNIV_DEBUG
1380/** Gets the type of a file space.
1381@param[in] space_id Tablespace ID
1382@return file type */
1383[[nodiscard]] fil_type_t fil_space_get_type(space_id_t space_id);
1384#endif /* UNIV_DEBUG */
1385
1386/** Note that a tablespace has been imported.
1387It is initially marked as FIL_TYPE_IMPORT so that no logging is
1388done during the import process when the space ID is stamped to each page.
1389Now we change it to FIL_TYPE_TABLESPACE to start redo and undo logging.
1390NOTE: temporary tablespaces are never imported.
1391@param[in] space_id Tablespace ID */
1392void fil_space_set_imported(space_id_t space_id);
1393#endif /* !UNIV_HOTBACKUP */
1394
1395/** Attach a file to a tablespace. File must be closed.
1396@param[in] name file name (file must be closed)
1397@param[in] size file size in database blocks, rounded
1398 downwards to an integer
1399@param[in,out] space space where to append
1400@param[in] is_raw true if a raw device or a raw disk partition
1401@param[in] atomic_write true if the file has atomic write enabled
1402@param[in] max_pages maximum number of pages in file
1403@return pointer to the file name
1404@retval nullptr if error */
1405[[nodiscard]] char *fil_node_create(const char *name, page_no_t size,
1406 fil_space_t *space, bool is_raw,
1407 bool atomic_write,
1408 page_no_t max_pages = PAGE_NO_MAX);
1409
1410/** Create a space memory object and put it to the fil_system hash table.
1411The tablespace name is independent from the tablespace file-name.
1412Error messages are issued to the server log.
1413@param[in] name Tablespace name
1414@param[in] space_id Tablespace ID
1415@param[in] flags Tablespace flags
1416@param[in] purpose Tablespace purpose
1417@return pointer to created tablespace, to be filled in with fil_node_create()
1418@retval nullptr on failure (such as when the same tablespace exists) */
1419[[nodiscard]] fil_space_t *fil_space_create(const char *name,
1420 space_id_t space_id, uint32_t flags,
1421 fil_type_t purpose);
1422
1423/** Assigns a new space id for a new single-table tablespace. This works
1424simply by incrementing the global counter. If 4 billion id's is not enough,
1425we may need to recycle id's.
1426@param[out] space_id Set this to the new tablespace ID
1427@return true if assigned, false if not */
1428[[nodiscard]] bool fil_assign_new_space_id(space_id_t *space_id);
1429
1430/** Returns the path from the first fil_node_t found with this space ID.
1431The caller is responsible for freeing the memory allocated here for the
1432value returned.
1433@param[in] space_id Tablespace ID
1434@return own: A copy of fil_node_t::path, nullptr if space ID is zero
1435 or not found. */
1436[[nodiscard]] char *fil_space_get_first_path(space_id_t space_id);
1437
1438/** Returns the size of the space in pages. The tablespace must be cached
1439in the memory cache.
1440@param[in] space_id Tablespace ID
1441@return space size, 0 if space not found */
1442[[nodiscard]] page_no_t fil_space_get_size(space_id_t space_id);
1443
1444/** Returns the size of an undo space just after it was initialized.
1445@param[in] space_id Tablespace ID
1446@return initial space size, 0 if space not found */
1448
1449/** This is called for an undo tablespace after it has been initialized
1450or opened. It sets the minimum size in pages at which it should be truncated
1451and the number of pages that it should be extended. An undo tablespace is
1452extended by larger amounts than normal tablespaces. It starts at 16Mb and
1453is increased during aggressive growth and decreased when the growth is slower.
1454@param[in] space_id Tablespace ID
1455@param[in] use_current If true, use the current size in pages as the initial
1456 size. If false, use UNDO_INITIAL_SIZE_IN_PAGES. */
1457void fil_space_set_undo_size(space_id_t space_id, bool use_current);
1458
1459/** Returns the flags of the space. The tablespace must be cached
1460in the memory cache.
1461@param[in] space_id Tablespace ID for which to get the flags
1462@return flags, ULINT_UNDEFINED if space not found */
1463[[nodiscard]] uint32_t fil_space_get_flags(space_id_t space_id);
1464
1465/** Sets the flags of the tablespace. The tablespace must be locked
1466in MDL_EXCLUSIVE MODE.
1467@param[in] space tablespace in-memory struct
1468@param[in] flags tablespace flags */
1469void fil_space_set_flags(fil_space_t *space, uint32_t flags);
1470
1471/** Open each file of a tablespace if not already open.
1472@param[in] space_id Tablespace ID
1473@retval true if all file nodes were opened
1474@retval false on failure */
1475[[nodiscard]] bool fil_space_open(space_id_t space_id);
1476
1477/** Close each file of a tablespace if open.
1478@param[in] space_id Tablespace ID */
1479void fil_space_close(space_id_t space_id);
1480
1481/** Returns the page size of the space and whether it is compressed or not.
1482The tablespace must be cached in the memory cache.
1483@param[in] space_id Tablespace ID
1484@param[out] found true if tablespace was found
1485@return page size */
1486[[nodiscard]] const page_size_t fil_space_get_page_size(space_id_t space_id,
1487 bool *found);
1488
1489/** Initializes the tablespace memory cache.
1490@param[in] max_n_open Maximum number of open files */
1491void fil_init(ulint max_n_open);
1492
1493/** Changes the maximum opened files limit.
1494@param[in, out] new_max_open_files New value for the open files limit. If the
1495limit cannot be changed, the value is changed to a minimum value recommended.
1496@return true if the new limit was set. */
1497bool fil_open_files_limit_update(size_t &new_max_open_files);
1498
1499/** Initializes the tablespace memory cache. */
1500void fil_close();
1501
1502/** Opens all log files and system tablespace data files.
1503They stay open until the database server shutdown. This should be called
1504at a server startup after the space objects for the log and the system
1505tablespace have been created. The purpose of this operation is to make
1506sure we never run out of file descriptors if we need to read from the
1507insert buffer or to write to the log. */
1509
1510/** Closes all open files. There must not be any pending i/o's or not flushed
1511modifications in the files. */
1512void fil_close_all_files();
1513
1514/** Iterate over the files in all the tablespaces. */
1516 public:
1517 using Function = std::function<dberr_t(fil_node_t *)>;
1518
1519 /** For each data file.
1520 @param[in] f Callback */
1521 template <typename F>
1522 static dberr_t for_each_file(F &&f) {
1523 return iterate([=](fil_node_t *file) { return (f(file)); });
1524 }
1525
1526 /** Iterate through all persistent tablespace files (FIL_TYPE_TABLESPACE)
1527 returning the nodes via callback function f.
1528 @param[in] f Callback
1529 @return any error returned by the callback function. */
1530 static dberr_t iterate(Function &&f);
1531};
1532
1533/** Sets the max tablespace id counter if the given number is bigger than the
1534previous value.
1535@param[in] max_id Maximum known tablespace ID */
1537
1538#ifndef UNIV_HOTBACKUP
1539
1540/** Write the flushed LSN to the page header of the first page in the
1541system tablespace.
1542@param[in] lsn Flushed LSN
1543@return DB_SUCCESS or error number */
1544[[nodiscard]] dberr_t fil_write_flushed_lsn(lsn_t lsn);
1545
1546#else /* !UNIV_HOTBACKUP */
1547/** Frees a space object from the tablespace memory cache.
1548Closes a tablespaces' files but does not delete them.
1549There must not be any pending i/o's or flushes on the files.
1550@param[in] space_id Tablespace ID
1551@return true if success */
1552bool meb_fil_space_free(space_id_t space_id);
1553
1554/** Extends all tablespaces to the size stored in the space header. During the
1555mysqlbackup --apply-log phase we extended the spaces on-demand so that log
1556records could be applied, but that may have left spaces still too small
1557compared to the size stored in the space header. */
1558void meb_extend_tablespaces_to_stored_len();
1559
1560/** Process a file name passed as an input
1561@param[in] name absolute path of tablespace file
1562@param[in] space_id the tablespace ID */
1563void meb_fil_name_process(const char *name, space_id_t space_id);
1564
1565#endif /* !UNIV_HOTBACKUP */
1566
1567/** Acquire a tablespace when it could be dropped concurrently.
1568Used by background threads that do not necessarily hold proper locks
1569for concurrency control.
1570@param[in] space_id Tablespace ID
1571@return the tablespace, or nullptr if missing or being deleted */
1572[[nodiscard]] fil_space_t *fil_space_acquire(space_id_t space_id);
1573
1574/** Acquire a tablespace that may not exist.
1575Used by background threads that do not necessarily hold proper locks
1576for concurrency control.
1577@param[in] space_id Tablespace ID
1578@return the tablespace, or nullptr if missing or being deleted */
1579[[nodiscard]] fil_space_t *fil_space_acquire_silent(space_id_t space_id);
1580
1581/** Release a tablespace acquired with fil_space_acquire().
1582@param[in,out] space Tablespace to release */
1583void fil_space_release(fil_space_t *space);
1584
1585/** Fetch the file name opened for a space_id from the file map.
1586@param[in] space_id tablespace ID
1587@param[out] name the scanned filename
1588@return true if the space_id is found. The name is set to an
1589empty string if the space_id is not found. */
1590bool fil_system_get_file_by_space_id(space_id_t space_id, std::string &name);
1591
1592/** Fetch the file name opened for an undo space number from the file map.
1593@param[in] space_num Undo tablespace Number
1594@param[out] space_id Undo tablespace ID
1595@param[out] name the scanned filename
1596@return true if the space_num was found. The name is set to an
1597empty string if the space_num is not found. */
1599 space_id_t &space_id, std::string &name);
1600
1601/** Truncate the tablespace to needed size.
1602@param[in] space_id Tablespace ID to truncate
1603@param[in] size_in_pages Truncate size.
1604@return true if truncate was successful. */
1605[[nodiscard]] bool fil_truncate_tablespace(space_id_t space_id,
1606 page_no_t size_in_pages);
1607
1608/** Closes a single-table tablespace. The tablespace must be cached in the
1609memory cache. Free all pages used by the tablespace.
1610@param[in] space_id Tablespace ID
1611@return DB_SUCCESS or error */
1612[[nodiscard]] dberr_t fil_close_tablespace(space_id_t space_id);
1613
1614/** Discards a single-table tablespace. The tablespace must be cached in the
1615memory cache. Discarding is like deleting a tablespace, but
1616
1617 1. We do not drop the table from the data dictionary;
1618
1619 2. We remove all insert buffer entries for the tablespace immediately;
1620 in DROP TABLE they are only removed gradually in the background;
1621
1622 3. When the user does IMPORT TABLESPACE, the tablespace will have the
1623 same id as it originally had.
1624
1625 4. Free all the pages in use by the tablespace if rename=true.
1626@param[in] space_id Tablespace ID
1627@return DB_SUCCESS or error */
1628[[nodiscard]] dberr_t fil_discard_tablespace(space_id_t space_id);
1629
1630/** Test if a tablespace file can be renamed to a new filepath by checking
1631if that the old filepath exists and the new filepath does not exist.
1632@param[in] space_id Tablespace ID
1633@param[in] old_path Old filepath
1634@param[in] new_path New filepath
1635@param[in] is_discarded Whether the tablespace is discarded
1636@return innodb error code */
1637[[nodiscard]] dberr_t fil_rename_tablespace_check(space_id_t space_id,
1638 const char *old_path,
1639 const char *new_path,
1640 bool is_discarded);
1641
1642/** Rename a single-table tablespace.
1643The tablespace must exist in the memory cache.
1644@param[in] space_id Tablespace ID
1645@param[in] old_path Old file name
1646@param[in] new_name New tablespace name in the schema/name format
1647@param[in] new_path_in New file name, or nullptr if it is located in
1648the normal data directory
1649@return InnoDB error code */
1650[[nodiscard]] dberr_t fil_rename_tablespace(space_id_t space_id,
1651 const char *old_path,
1652 const char *new_name,
1653 const char *new_path_in);
1654
1655/** Create an IBD tablespace file.
1656@param[in] space_id Tablespace ID
1657@param[in] name Tablespace name in dbname/tablename format.
1658 For general tablespaces, the 'dbname/' part
1659 may be missing.
1660@param[in] path Path and filename of the datafile to create.
1661@param[in] flags Tablespace flags
1662@param[in] size Initial size of the tablespace file in pages,
1663 must be >= FIL_IBD_FILE_INITIAL_SIZE
1664@return DB_SUCCESS or error code */
1665[[nodiscard]] dberr_t fil_ibd_create(space_id_t space_id, const char *name,
1666 const char *path, uint32_t flags,
1667 page_no_t size);
1668
1669/** Create a session temporary tablespace (IBT) file.
1670@param[in] space_id Tablespace ID
1671@param[in] name Tablespace name
1672@param[in] path Path and filename of the datafile to create.
1673@param[in] flags Tablespace flags
1674@param[in] size Initial size of the tablespace file in pages,
1675 must be >= FIL_IBT_FILE_INITIAL_SIZE
1676@return DB_SUCCESS or error code */
1677[[nodiscard]] dberr_t fil_ibt_create(space_id_t space_id, const char *name,
1678 const char *path, uint32_t flags,
1679 page_no_t size);
1680
1681/** Deletes an IBD or IBU tablespace.
1682The tablespace must be cached in the memory cache. This will delete the
1683datafile, fil_space_t & fil_node_t entries from the file_system_t cache.
1684@param[in] space_id Tablespace ID
1685@param[in] buf_remove Specify the action to take on the pages
1686for this table in the buffer pool.
1687@return DB_SUCCESS, DB_TABLESPCE_NOT_FOUND or DB_IO_ERROR */
1688[[nodiscard]] dberr_t fil_delete_tablespace(space_id_t space_id,
1689 buf_remove_t buf_remove);
1690
1691/** Open a single-table tablespace and optionally do some validation such
1692as checking that the space id is correct. If the file is already open,
1693the validation will be done before reporting success.
1694If not successful, print an error message to the error log.
1695This function is used to open a tablespace when we start up mysqld,
1696and also in IMPORT TABLESPACE.
1697NOTE that we assume this operation is used either at the database startup
1698or under the protection of the dictionary mutex, so that two users cannot
1699race here.
1700
1701The fil_node_t::handle will not be left open.
1702
1703@param[in] validate whether we should validate the tablespace
1704 (read the first page of the file and
1705 check that the space id in it matches id)
1706@param[in] purpose FIL_TYPE_TABLESPACE or FIL_TYPE_TEMPORARY
1707@param[in] space_id Tablespace ID
1708@param[in] flags tablespace flags
1709@param[in] space_name tablespace name of the datafile
1710 If file-per-table, it is the table name in the
1711 databasename/tablename format
1712@param[in] path_in expected filepath, usually read from dictionary
1713@param[in] strict whether to report error when open ibd failed
1714@param[in] old_space whether it is a 5.7 tablespace opening
1715 by upgrade
1716@return DB_SUCCESS or error code */
1717[[nodiscard]] dberr_t fil_ibd_open(bool validate, fil_type_t purpose,
1718 space_id_t space_id, uint32_t flags,
1719 const char *space_name, const char *path_in,
1720 bool strict, bool old_space);
1721
1722/** Returns true if a matching tablespace exists in the InnoDB tablespace
1723memory cache.
1724@param[in] space_id Tablespace ID
1725@param[in] name Tablespace name used in space_create().
1726@param[in] print_err Print detailed error information to the
1727 error log if a matching tablespace is
1728 not found from memory.
1729@param[in] adjust_space Whether to adjust space id on mismatch
1730@return true if a matching tablespace exists in the memory cache */
1731[[nodiscard]] bool fil_space_exists_in_mem(space_id_t space_id,
1732 const char *name, bool print_err,
1733 bool adjust_space);
1734
1735/** Extends all tablespaces to the size stored in the space header. During the
1736mysqlbackup --apply-log phase we extended the spaces on-demand so that log
1737records could be appllied, but that may have left spaces still too small
1738compared to the size stored in the space header. */
1740
1741/** Try to extend a tablespace if it is smaller than the specified size.
1742@param[in,out] space Tablespace ID
1743@param[in] size desired size in pages
1744@return whether the tablespace is at least as big as requested */
1745[[nodiscard]] bool fil_space_extend(fil_space_t *space, page_no_t size);
1746
1747/** Tries to reserve free extents in a file space.
1748@param[in] space_id Tablespace ID
1749@param[in] n_free_now Number of free extents now
1750@param[in] n_to_reserve How many one wants to reserve
1751@return true if succeed */
1752[[nodiscard]] bool fil_space_reserve_free_extents(space_id_t space_id,
1753 ulint n_free_now,
1754 ulint n_to_reserve);
1755
1756/** Releases free extents in a file space.
1757@param[in] space_id Tablespace ID
1758@param[in] n_reserved How many were reserved */
1759void fil_space_release_free_extents(space_id_t space_id, ulint n_reserved);
1760
1761/** Gets the number of reserved extents. If the database is silent, this
1762number should be zero.
1763@param[in] space_id Tablespace ID
1764@return the number of reserved extents */
1765[[nodiscard]] ulint fil_space_get_n_reserved_extents(space_id_t space_id);
1766
1767/** Read or write data from a file.
1768@param[in] type IO context
1769@param[in] sync If true then do synchronous IO
1770@param[in] page_id page id
1771@param[in] page_size page size
1772@param[in] byte_offset remainder of offset in bytes; in aio this
1773 must be divisible by the OS block size
1774@param[in] len how many bytes to read or write; this must
1775 not cross a file boundary; in AIO this must
1776 be a block size multiple
1777@param[in,out] buf buffer where to store read data or from where
1778 to write; in AIO this must be appropriately
1779 aligned
1780@param[in] message message for AIO handler if !sync, else ignored
1781@return error code
1782@retval DB_SUCCESS on success
1783@retval DB_TABLESPACE_DELETED if the tablespace does not exist */
1784[[nodiscard]] dberr_t fil_io(const IORequest &type, bool sync,
1785 const page_id_t &page_id,
1786 const page_size_t &page_size, ulint byte_offset,
1787 ulint len, void *buf, void *message);
1788
1789/** Waits for an AIO operation to complete. This function is used to write the
1790handler for completed requests. The aio array of pending requests is divided
1791into segments (see os0file.cc for more info). The thread specifies which
1792segment it wants to wait for.
1793@param[in] segment The number of the segment in the AIO array
1794 to wait for */
1795void fil_aio_wait(ulint segment);
1796
1797/** Flushes to disk possible writes cached by the OS. If the space does
1798not exist or is being dropped, does not do anything.
1799@param[in] space_id Tablespace ID */
1800void fil_flush(space_id_t space_id);
1801
1802/** Flush to disk the writes in file spaces possibly cached by the OS
1803(note: spaces of type FIL_TYPE_TEMPORARY are skipped) */
1805
1806#ifdef UNIV_DEBUG
1807/** Checks the consistency of the tablespace cache.
1808@return true if ok */
1809bool fil_validate();
1810#endif /* UNIV_DEBUG */
1811
1812/** Returns true if file address is undefined.
1813@param[in] addr File address to check
1814@return true if undefined */
1815[[nodiscard]] bool fil_addr_is_null(const fil_addr_t &addr);
1816
1817/** Get the predecessor of a file page.
1818@param[in] page File page
1819@return FIL_PAGE_PREV */
1820[[nodiscard]] page_no_t fil_page_get_prev(const byte *page);
1821
1822/** Get the successor of a file page.
1823@param[in] page File page
1824@return FIL_PAGE_NEXT */
1825[[nodiscard]] page_no_t fil_page_get_next(const byte *page);
1826
1827/** Sets the file page type.
1828@param[in,out] page File page
1829@param[in] type File page type to set */
1830void fil_page_set_type(byte *page, ulint type);
1831
1832/** Reset the page type.
1833Data files created before MySQL 5.1 may contain garbage in FIL_PAGE_TYPE.
1834In MySQL 3.23.53, only undo log pages and index pages were tagged.
1835Any other pages were written with uninitialized bytes in FIL_PAGE_TYPE.
1836@param[in] page_id Page number
1837@param[in,out] page Page with invalid FIL_PAGE_TYPE
1838@param[in] type Expected page type
1839@param[in,out] mtr Mini-transaction */
1840void fil_page_reset_type(const page_id_t &page_id, byte *page, ulint type,
1841 mtr_t *mtr);
1842
1843/** Check (and if needed, reset) the page type.
1844Data files created before MySQL 5.1 may contain
1845garbage in the FIL_PAGE_TYPE field.
1846In MySQL 3.23.53, only undo log pages and index pages were tagged.
1847Any other pages were written with uninitialized bytes in FIL_PAGE_TYPE.
1848@param[in] page_id Page number
1849@param[in,out] page Page with possibly invalid FIL_PAGE_TYPE
1850@param[in] type Expected page type
1851@param[in,out] mtr Mini-transaction */
1852inline void fil_page_check_type(const page_id_t &page_id, byte *page,
1853 ulint type, mtr_t *mtr) {
1854 ulint page_type = fil_page_get_type(page);
1855
1856 if (page_type != type) {
1857 fil_page_reset_type(page_id, page, type, mtr);
1858 }
1859}
1860
1861/** Check (and if needed, reset) the page type.
1862Data files created before MySQL 5.1 may contain
1863garbage in the FIL_PAGE_TYPE field.
1864In MySQL 3.23.53, only undo log pages and index pages were tagged.
1865Any other pages were written with uninitialized bytes in FIL_PAGE_TYPE.
1866@param[in,out] block Block with possibly invalid FIL_PAGE_TYPE
1867@param[in] type Expected page type
1868@param[in,out] mtr Mini-transaction */
1869#define fil_block_check_type(block, type, mtr) \
1870 fil_page_check_type(block->page.id, block->frame, type, mtr)
1871
1872#ifdef UNIV_DEBUG
1873/** Increase redo skipped count for a tablespace.
1874@param[in] space_id Tablespace ID */
1876
1877/** Decrease redo skipped count for a tablespace.
1878@param[in] space_id Tablespace ID */
1880
1881/** Check whether a single-table tablespace is redo skipped.
1882@param[in] space_id Tablespace ID
1883@return true if redo skipped */
1884[[nodiscard]] bool fil_space_is_redo_skipped(space_id_t space_id);
1885#endif /* UNIV_DEBUG */
1886
1887/** Delete the tablespace file and any related files like .cfg.
1888This should not be called for temporary tables.
1889@param[in] path File path of the IBD tablespace
1890@return true on success */
1891[[nodiscard]] bool fil_delete_file(const char *path);
1892
1893/** Callback functor. */
1895 /** Default constructor */
1897
1898 virtual ~PageCallback() UNIV_NOTHROW = default;
1899
1900 /** Called for page 0 in the tablespace file at the start.
1901 @param file_size size of the file in bytes
1902 @param block contents of the first page in the tablespace file
1903 @retval DB_SUCCESS or error code. */
1904 [[nodiscard]] virtual dberr_t init(os_offset_t file_size,
1905 const buf_block_t *block) UNIV_NOTHROW = 0;
1906
1907 /** Called for every page in the tablespace. If the page was not
1908 updated then its state must be set to BUF_PAGE_NOT_USED. For
1909 compressed tables the page descriptor memory will be at offset:
1910 block->frame + UNIV_PAGE_SIZE;
1911 @param offset physical offset within the file
1912 @param block block read from file, note it is not from the buffer pool
1913 @retval DB_SUCCESS or error code. */
1914 [[nodiscard]] virtual dberr_t operator()(os_offset_t offset,
1915 buf_block_t *block) UNIV_NOTHROW = 0;
1916
1917 /** Set the name of the physical file and the file handle that is used
1918 to open it for the file that is being iterated over.
1919 @param filename then physical name of the tablespace file.
1920 @param file OS file handle */
1922 m_file = file;
1924 }
1925
1926 /** @return the space id of the tablespace */
1927 [[nodiscard]] virtual space_id_t get_space_id() const UNIV_NOTHROW = 0;
1928
1929 /**
1930 @retval the space flags of the tablespace being iterated over */
1931 [[nodiscard]] virtual ulint get_space_flags() const UNIV_NOTHROW = 0;
1932
1933 /** Set the tablespace table size.
1934 @param[in] page a page belonging to the tablespace */
1936
1937 /** The compressed page size
1938 @return the compressed page size */
1939 [[nodiscard]] const page_size_t &get_page_size() const {
1940 return (m_page_size);
1941 }
1942
1943 /** The tablespace page size. */
1945
1946 /** File handle to the tablespace */
1948
1949 /** Physical file path. */
1950 const char *m_filepath;
1951
1952 // Disable copying
1954 PageCallback(const PageCallback &) = delete;
1956};
1957
1958/** Iterate over all the pages in the tablespace.
1959@param[in] encryption_metadata the encryption metadata to use for reading
1960@param[in] table the table definition in the server
1961@param[in] n_io_buffers number of blocks to read and write together
1962@param[in] compression_type compression type if compression is enabled,
1963else Compression::Type::NONE
1964@param[in,out] callback functor that will do the page updates
1965@return DB_SUCCESS or error code */
1966[[nodiscard]] dberr_t fil_tablespace_iterate(
1967 const Encryption_metadata &encryption_metadata, dict_table_t *table,
1968 ulint n_io_buffers, Compression::Type compression_type,
1969 PageCallback &callback);
1970
1971/** Looks for a pre-existing fil_space_t with the given tablespace ID
1972and, if found, returns the name and filepath in newly allocated buffers
1973that the caller must free.
1974@param[in] space_id The tablespace ID to search for.
1975@param[out] name Name of the tablespace found.
1976@param[out] filepath The filepath of the first datafile for the
1977tablespace.
1978@return true if tablespace is found, false if not. */
1979[[nodiscard]] bool fil_space_read_name_and_filepath(space_id_t space_id,
1980 char **name,
1981 char **filepath);
1982
1983/** Convert a file name to a tablespace name. Strip the file name
1984prefix and suffix, leaving only databasename/tablename.
1985@param[in] filename directory/databasename/tablename.ibd
1986@return database/tablename string, to be freed with ut::free() */
1987[[nodiscard]] char *fil_path_to_space_name(const char *filename);
1988
1989/** Returns the space ID based on the tablespace name.
1990The tablespace must be found in the tablespace memory cache.
1991This call is made from external to this module, so the mutex is not owned.
1992@param[in] name Tablespace name
1993@return space ID if tablespace found, SPACE_UNKNOWN if space not. */
1994[[nodiscard]] space_id_t fil_space_get_id_by_name(const char *name);
1995
1996/** Check if swapping two .ibd files can be done without failure
1997@param[in] old_table old table
1998@param[in] new_table new table
1999@param[in] tmp_name temporary table name
2000@return innodb error code */
2001[[nodiscard]] dberr_t fil_rename_precheck(const dict_table_t *old_table,
2002 const dict_table_t *new_table,
2003 const char *tmp_name);
2004
2005/** Set the compression type for the tablespace
2006@param[in] space_id Space ID of the tablespace
2007@param[in] algorithm Text representation of the algorithm
2008@return DB_SUCCESS or error code */
2009[[nodiscard]] dberr_t fil_set_compression(space_id_t space_id,
2010 const char *algorithm);
2011
2012/** Get the compression algorithm for a tablespace.
2013@param[in] space_id Space ID to check
2014@return the compression algorithm */
2015[[nodiscard]] Compression::Type fil_get_compression(space_id_t space_id);
2016
2017/** Set encryption information for IORequest.
2018@param[in,out] req_type IO request
2019@param[in] page_id page id
2020@param[in] space table space */
2021void fil_io_set_encryption(IORequest &req_type, const page_id_t &page_id,
2022 fil_space_t *space);
2023
2024/** Set the encryption type for the tablespace
2025@param[in] space_id Space ID of tablespace for which to set
2026@param[in] algorithm Encryption algorithm
2027@param[in] key Encryption key
2028@param[in] iv Encryption iv
2029@return DB_SUCCESS or error code */
2030[[nodiscard]] dberr_t fil_set_encryption(space_id_t space_id,
2031 Encryption::Type algorithm, byte *key,
2032 byte *iv);
2033
2034/** Set the autoextend_size attribute for the tablespace
2035@param[in] space_id Space ID of tablespace for which to set
2036@param[in] autoextend_size Value of autoextend_size attribute
2037@return DB_SUCCESS or error code */
2038dberr_t fil_set_autoextend_size(space_id_t space_id, uint64_t autoextend_size);
2039
2040/** Reset the encryption type for the tablespace
2041@param[in] space_id Space ID of tablespace for which to set
2042@return DB_SUCCESS or error code */
2043[[nodiscard]] dberr_t fil_reset_encryption(space_id_t space_id);
2044
2045/** Rotate the tablespace keys by new master key.
2046@return the number of tablespaces that failed to rotate. */
2047[[nodiscard]] size_t fil_encryption_rotate();
2048
2049/** Roencrypt the tablespace keys by current master key. */
2050void fil_encryption_reencrypt(std::vector<space_id_t> &sid_vector);
2051
2052/** During crash recovery, open a tablespace if it had not been opened
2053yet, to get valid size and flags.
2054@param[in,out] space Tablespace instance */
2056 if (space->size == 0) {
2057 /* Initially, size and flags will be set to 0,
2058 until the files are opened for the first time.
2059 fil_space_get_size() will open the file
2060 and adjust the size and flags. */
2062
2063 ut_a(size == space->size);
2064 }
2065}
2066
2067#ifdef UNIV_LINUX
2068/**
2069Try and enable FusionIO atomic writes.
2070@param[in] file OS file handle
2071@return true if successful */
2072[[nodiscard]] bool fil_fusionio_enable_atomic_write(pfs_os_file_t file);
2073#endif /* UNIV_LINUX */
2074
2075/** Note that the file system where the file resides doesn't support PUNCH HOLE.
2076Called from AIO handlers when IO returns DB_IO_NO_PUNCH_HOLE
2077@param[in,out] file file to set */
2079
2080#ifdef UNIV_ENABLE_UNIT_TEST_MAKE_FILEPATH
2081void test_make_filepath();
2082#endif /* UNIV_ENABLE_UNIT_TEST_MAKE_FILEPATH */
2083
2084/** @return the system tablespace instance */
2087}
2088
2089/** Redo a tablespace create.
2090@param[in] ptr redo log record
2091@param[in] end end of the redo log buffer
2092@param[in] page_id Tablespace Id and first page in file
2093@param[in] parsed_bytes Number of bytes parsed so far
2094@param[in] parse_only Don't apply, parse only
2095@return pointer to next redo log record
2096@retval nullptr if this log record was truncated */
2097[[nodiscard]] const byte *fil_tablespace_redo_create(const byte *ptr,
2098 const byte *end,
2099 const page_id_t &page_id,
2100 ulint parsed_bytes,
2101 bool parse_only);
2102
2103/** Redo a tablespace delete.
2104@param[in] ptr redo log record
2105@param[in] end end of the redo log buffer
2106@param[in] page_id Tablespace Id and first page in file
2107@param[in] parsed_bytes Number of bytes parsed so far
2108@param[in] parse_only Don't apply, parse only
2109@return pointer to next redo log record
2110@retval nullptr if this log record was truncated */
2111[[nodiscard]] const byte *fil_tablespace_redo_delete(const byte *ptr,
2112 const byte *end,
2113 const page_id_t &page_id,
2114 ulint parsed_bytes,
2115 bool parse_only);
2116
2117/** Redo a tablespace rename.
2118This function doesn't do anything, simply parses the redo log record.
2119@param[in] ptr redo log record
2120@param[in] end end of the redo log buffer
2121@param[in] page_id Tablespace Id and first page in file
2122@param[in] parsed_bytes Number of bytes parsed so far
2123@param[in] parse_only Don't apply, parse only
2124@return pointer to next redo log record
2125@retval nullptr if this log record was truncated */
2126[[nodiscard]] const byte *fil_tablespace_redo_rename(const byte *ptr,
2127 const byte *end,
2128 const page_id_t &page_id,
2129 ulint parsed_bytes,
2130 bool parse_only);
2131
2132/** Redo a tablespace extend
2133@param[in] ptr redo log record
2134@param[in] end end of the redo log buffer
2135@param[in] page_id Tablespace Id and first page in file
2136@param[in] parsed_bytes Number of bytes parsed so far
2137@param[in] parse_only Don't apply the log if true
2138@return pointer to next redo log record
2139@retval nullptr if this log record was truncated */
2140[[nodiscard]] const byte *fil_tablespace_redo_extend(const byte *ptr,
2141 const byte *end,
2142 const page_id_t &page_id,
2143 ulint parsed_bytes,
2144 bool parse_only);
2145
2146/** Parse and process an encryption redo record.
2147@param[in] ptr redo log record
2148@param[in] end end of the redo log buffer
2149@param[in] space_id the tablespace ID
2150@param[in] lsn lsn for REDO record
2151@return log record end, nullptr if not a complete record */
2152[[nodiscard]] const byte *fil_tablespace_redo_encryption(const byte *ptr,
2153 const byte *end,
2154 space_id_t space_id,
2155 lsn_t lsn);
2156
2157/** Read the tablespace id to path mapping from the file
2158@param[in] recovery true if called from crash recovery */
2160
2161/** Lookup the tablespace ID.
2162@param[in] space_id Tablespace ID to lookup
2163@return true if the space ID is known. */
2164[[nodiscard]] bool fil_tablespace_lookup_for_recovery(space_id_t space_id);
2165
2166/** Compare and update space name and dd path for partitioned table. Uniformly
2167converts partition separators and names to lower case.
2168@param[in] space_id tablespace ID
2169@param[in] fsp_flags tablespace flags
2170@param[in] update_space update space name
2171@param[in,out] space_name tablespace name
2172@param[in,out] dd_path file name with complete path
2173@return true, if names are updated. */
2174bool fil_update_partition_name(space_id_t space_id, uint32_t fsp_flags,
2175 bool update_space, std::string &space_name,
2176 std::string &dd_path);
2177
2178/** Add tablespace to the set of tablespaces to be updated in DD.
2179@param[in] dd_object_id Server DD tablespace ID
2180@param[in] space_id Innodb tablespace ID
2181@param[in] space_name New tablespace name
2182@param[in] old_path Old Path in the data dictionary
2183@param[in] new_path New path to be update in dictionary
2184@param[in] dd_flag_missing This tablespace is outside default data
2185 directory, yet it is missing
2186 DD_TABLE_DATA_DIRECTORY flag. This could
2187 happen in versions earlier than
2188 8.0.38/8.4.1/9.0.0 */
2189void fil_add_moved_space(dd::Object_id dd_object_id, space_id_t space_id,
2190 const char *space_name, const std::string &old_path,
2191 const std::string &new_path, bool dd_flag_missing);
2192
2193/** Lookup the tablespace ID and return the path to the file. The filename
2194is ignored when testing for equality. Only the path up to the file name is
2195considered for matching: e.g. ./test/a.ibd == ./test/b.ibd.
2196@param[in] space_id tablespace ID to lookup
2197@param[in] space_name tablespace name
2198@param[in] fsp_flags tablespace flags
2199@param[in] old_path the path found in dd:Tablespace_files
2200@param[out] new_path the scanned path for this space_id
2201@return status of the match. */
2202[[nodiscard]] Fil_state fil_tablespace_path_equals(space_id_t space_id,
2203 const char *space_name,
2204 ulint fsp_flags,
2205 std::string old_path,
2206 std::string *new_path);
2207
2208/** This function should be called after recovery has completed.
2209Check for tablespace files for which we did not see any MLOG_FILE_DELETE
2210or MLOG_FILE_RENAME record. These could not be recovered
2211@return true if there were some filenames missing for which we had to
2212ignore redo log records during the apply phase */
2213[[nodiscard]] bool fil_check_missing_tablespaces();
2214
2215/** Normalize and save a directory to scan for datafiles.
2216@param[in] directory directory to scan for ibd and ibu files
2217@param[in] is_undo_dir true for an undo directory */
2218void fil_set_scan_dir(const std::string &directory, bool is_undo_dir = false);
2219
2220/** Normalize and save a list of directories to scan for datafiles.
2221@param[in] directories Directories to scan for ibd and ibu files
2222 in the form: "dir1;dir2; ... dirN" */
2223void fil_set_scan_dirs(const std::string &directories);
2224
2225/** Discover tablespaces by reading the header from .ibd files.
2226@return DB_SUCCESS if all goes well */
2228
2229/** Open the tablespace and also get the tablespace filenames, space_id must
2230already be known.
2231@param[in] space_id Tablespace ID to lookup
2232@return DB_SUCCESS if open was successful */
2234
2235/** Replay a file rename operation for ddl replay.
2236@param[in] page_id Space ID and first page number in the file
2237@param[in] old_name old file name
2238@param[in] new_name new file name
2239@return whether the operation was successfully applied
2240(the name did not exist, or new_name did not exist and
2241name was successfully renamed to new_name) */
2242bool fil_op_replay_rename_for_ddl(const page_id_t &page_id,
2243 const char *old_name, const char *new_name);
2244
2245/** Free the Tablespace_files instance.
2246@param[in] read_only_mode true if InnoDB is started in read only mode.
2247@return DB_SUCCESS if all OK */
2248[[nodiscard]] dberr_t fil_open_for_business(bool read_only_mode);
2249
2250/** Check if a path is known to InnoDB meaning that it is in or under
2251one of the four path settings scanned at startup for file discovery.
2252@param[in] path Path to check
2253@return true if path is known to InnoDB */
2254[[nodiscard]] bool fil_path_is_known(const std::string &path);
2255
2256/** Get the list of directories that datafiles can reside in.
2257@return the list of directories 'dir1;dir2;....;dirN' */
2258[[nodiscard]] std::string fil_get_dirs();
2259
2260/** Rename a tablespace. Use the space_id to find the shard.
2261@param[in] space_id tablespace ID
2262@param[in] old_name old tablespace name
2263@param[in] new_name new tablespace name
2264@return DB_SUCCESS on success */
2265[[nodiscard]] dberr_t fil_rename_tablespace_by_id(space_id_t space_id,
2266 const char *old_name,
2267 const char *new_name);
2268
2269/** Write initial pages for a new tablespace file created.
2270@param[in] file open file handle
2271@param[in] path path and filename of the datafile
2272@param[in] type file type
2273@param[in] size Initial size of the tablespace file in pages
2274@param[in] encrypt_info encryption key information
2275@param[in] space_id tablespace ID
2276@param[in,out] space_flags tablespace flags
2277@param[out] atomic_write if atomic write is used
2278@param[out] punch_hole if punch hole is used
2279@return DB_SUCCESS on success */
2280[[nodiscard]] dberr_t fil_write_initial_pages(
2282 const byte *encrypt_info, space_id_t space_id, uint32_t &space_flags,
2283 bool &atomic_write, bool &punch_hole);
2284
2285/** Free the data structures required for recovery. */
2287
2288/** Update the tablespace name. In case, the new name
2289and old name are same, no update done.
2290@param[in,out] space tablespace object on which name
2291 will be updated
2292@param[in] name new name for tablespace */
2293void fil_space_update_name(fil_space_t *space, const char *name);
2294
2295/** Adjust file name for import for partition files in different letter case.
2296@param[in] table Innodb dict table
2297@param[in] path file path to open
2298@param[in] extn file extension */
2300 ib_file_suffix extn);
2301
2302#ifndef UNIV_HOTBACKUP
2303
2304/** Allows fil system to do periodical cleanup. */
2305void fil_purge();
2306
2307/** Count how many truncated undo space IDs are still tracked in
2308the buffer pool and the file_system cache.
2309@param[in] undo_num undo tablespace number.
2310@return number of undo tablespaces that are still in memory. */
2311size_t fil_count_undo_deleted(space_id_t undo_num);
2312
2313#endif /* !UNIV_HOTBACKUP */
2314
2315/** Get the page type as a string.
2316@param[in] type page type to be converted to string.
2317@return the page type as a string. */
2318[[nodiscard]] const char *fil_get_page_type_str(page_type_t type) noexcept;
2319
2320/** Check if the given page type is valid.
2321@param[in] type the page type to be checked for validity.
2322@return true if it is valid page type, false otherwise. */
2323[[nodiscard]] bool fil_is_page_type_valid(page_type_t type) noexcept;
2324
2326 fil_node_t **node_out);
2327void fil_complete_write(space_id_t space_id, fil_node_t *node);
2328
2329inline bool fil_node_t::is_offset_valid(os_offset_t byte_offset) const {
2330 const page_size_t page_size(space->flags);
2331 const os_offset_t max_offset = size * page_size.physical();
2332 ut_ad(byte_offset < max_offset);
2333 return byte_offset < max_offset;
2334}
2335
2336#endif /* fil0fil_h */
uint32_t space_id_t
Tablespace identifier.
Definition: api0api.h:48
uint32_t page_no_t
Page number.
Definition: api0api.h:46
byte buf_frame_t
A buffer frame.
Definition: buf0types.h:62
buf_remove_t
Algorithm to remove the pages for a tablespace from the buffer pool.
Definition: buf0types.h:84
Type
Algorithm types supported.
Definition: os0enc.h:57
Progress
Encryption progress type.
Definition: os0enc.h:80
Iterate over the files in all the tablespaces.
Definition: fil0fil.h:1515
std::function< dberr_t(fil_node_t *)> Function
Definition: fil0fil.h:1517
static dberr_t iterate(Function &&f)
Iterate through all persistent tablespace files (FIL_TYPE_TABLESPACE) returning the nodes via callbac...
Definition: fil0fil.cc:3949
static dberr_t for_each_file(F &&f)
For each data file.
Definition: fil0fil.h:1522
Wrapper for a path to a directory that may or may not exist.
Definition: fil0fil.h:618
bool is_ancestor(const Fil_path &other) const
Check if m_path is the parent of the other path.
Definition: fil0fil.cc:9222
size_t abs_len() const
Definition: fil0fil.h:691
static void convert_to_filename_charset(std::string &name)
Convert filename to the file system charset format.
Definition: fil0fil.cc:11657
static bool is_same_as(const std::string &first, const std::string &second)
Check if two path strings are equal.
Definition: fil0fil.h:721
static char * make_ibd_from_table_name(const std::string &name_in)
Allocate and build a file name from a path, a table or tablespace name and a suffix.
Definition: fil0fil.h:1065
static const char * get_file_type_string(const std::string &path)
Return a string to display the file type of a path.
Definition: fil0fil.cc:9290
path_type
Various types of file paths.
Definition: fil0fil.h:639
@ absolute
Definition: fil0fil.h:639
@ invalid
Definition: fil0fil.h:639
@ relative
Definition: fil0fil.h:639
@ file_name_only
Definition: fil0fil.h:639
bool operator==(const Fil_path &other) const
Determine if this path is equal to the other path.
Definition: fil0fil.h:696
static char * make(const std::string &path_in, const std::string &name_in, ib_file_suffix ext, bool trim=false)
Allocate and build a file name from a path, a table or tablespace name and a suffix.
Definition: fil0fil.cc:4908
static bool is_ancestor(const std::string &first, const std::string &second)
Check if the first path is an ancestor of the second.
Definition: fil0fil.h:761
static char * make_cfp(const std::string &path_in)
Allocate and build a CFP file name from a path.
Definition: fil0fil.h:1045
static constexpr auto SEPARATOR
Directory separators that are supported.
Definition: fil0fil.h:627
static constexpr auto DOT_SLASH
Definition: fil0fil.h:633
std::string m_path
Path to a file or directory.
Definition: fil0fil.h:1137
const char * operator()() const
Explicit type conversion.
Definition: fil0fil.h:669
bool is_dir_same_as(const Fil_path &other) const
Check if the directory to path is same as directory as the other path.
Definition: fil0fil.cc:9212
static bool is_relative_path(const std::string &path)
Determine if a path is a relative path or not.
Definition: fil0fil.h:831
static bool is_absolute_path(const std::string &path)
Determine if a path is an absolute path or not.
Definition: fil0fil.h:844
static void convert_to_lower_case(std::string &path)
Convert to lower case using the file system charset.
Definition: fil0fil.cc:11674
static std::string get_basename(const std::string &filepath)
Get the basename of the file path.
Definition: fil0fil.cc:4325
bool is_same_as(const Fil_path &other) const
Check if m_path is the same as this other path.
Definition: fil0fil.cc:9182
const std::string abs_path() const
Return the absolute path by value.
Definition: fil0fil.h:682
bool is_valid() const
This validation is only for ':'.
Definition: fil0fil.cc:9332
static std::string make_new_path(const std::string &path_in, const std::string &name_in, ib_file_suffix extn)
Create an IBD path name after replacing the basename in an old path with a new basename.
Definition: fil0fil.cc:5020
std::string m_abs_path
A full absolute path to the same file.
Definition: fil0fil.h:1140
static bool is_separator(char c)
Check if a character is a path separator ('\' or '/')
Definition: fil0fil.h:998
static void append_separator(std::string &path)
If the last character of a directory path is NOT a separator, append a separator to the path.
Definition: fil0fil.h:1015
static bool is_valid_location_within_db(const char *space_name, const std::string &path)
Check if the implicit filepath is immediately within a dir named for the schema.
Definition: fil0fil.cc:11594
static constexpr auto SLASH_DOT_DOT_SLASH
Definition: fil0fil.h:635
static std::pair< std::string, std::string > split(const std::string &path)
Splits the path into directory and file name parts.
Definition: fil0fil.cc:9216
size_t len() const
Definition: fil0fil.h:675
static char * make_cfg(const std::string &path_in)
Allocate and build a CFG file name from a path.
Definition: fil0fil.h:1038
static std::string remove_quotes(const char *pathspec)
Remove quotes e.g., 'a;b' or "a;b" -> a;b.
Definition: fil0fil.h:813
Fil_path get_abs_directory() const
Get the absolute directory of this path.
Definition: fil0fil.cc:9206
static constexpr auto OS_SEPARATOR
OS specific path separator.
Definition: fil0fil.h:624
static bool is_valid_location(const char *space_name, space_id_t space_id, uint32_t fsp_flags, const std::string &path)
Check if the filepath provided is in a valid placement.
Definition: fil0fil.cc:11550
static bool is_undo_tablespace_name(const std::string &name)
Check if the name is an undo tablespace name.
Definition: fil0fil.cc:2109
static char * make_ibd(const std::string &path_in, const std::string &name_in)
Allocate and build a file name from a path, a table or tablespace name and a suffix.
Definition: fil0fil.h:1056
const std::string & path() const
Definition: fil0fil.h:672
bool is_circular() const
Determine if m_path contains a circular section like "/anydir/../" Fil_path::normalize() must be run ...
Definition: fil0fil.cc:9356
bool is_directory_and_exists() const
Definition: fil0fil.cc:9326
static std::string get_real_path(const std::string &path, bool force=true)
Get the real path for a directory or a file name.
Definition: fil0fil.cc:4215
bool is_file_and_exists() const
Definition: fil0fil.cc:9321
static bool is_hidden(std::string path)
Determine if the file or directory is considered HIDDEN.
Definition: fil0fil.cc:9253
bool is_absolute_path() const
Definition: fil0fil.h:836
static constexpr auto DB_SEPARATOR
schema '/' table separator
Definition: fil0fil.h:621
static void make_data_dir_path(char *data_dir_path)
This function reduces a null-terminated full remote path name into the path that is sent by MySQL for...
Definition: fil0fil.cc:5059
static void normalize(char *path)
Normalize a directory path for the current OS: On Windows, we convert '/' to '\', else we convert '\'...
Definition: fil0fil.h:905
Fil_path()
Default constructor.
Definition: fil0fil.cc:9179
static os_file_type_t get_file_type(const std::string &path)
Definition: fil0fil.cc:9279
static bool truncate_suffix(ib_file_suffix sfx, std::string &path)
Check if the file has the the specified suffix and truncate.
Definition: fil0fil.h:982
static void to_lower(std::string &path)
Convert a path string to lower case using the CHARSET my_charset_filename.
Definition: fil0fil.h:915
static bool parse_file_path(const std::string &file_path, ib_file_suffix extn, std::string &dict_name)
Parse file-per-table file name and build Innodb dictionary table name.
Definition: fil0fil.cc:4988
static path_type type_of_path(const std::string &path)
Determine what type of path is provided.
Definition: fil0fil.h:852
static void normalize(std::string &path)
Normalize a directory path for the current OS: On Windows, we convert '/' to '\', else we convert '\'...
Definition: fil0fil.h:894
static std::string get_existing_path(const std::string &path, std::string &ghost)
Separate the portion of a directory path that exists and the portion that does not exist.
Definition: fil0fil.cc:4185
static void trim_separator(std::string &path)
If the last character of a directory path is a separator ('\' or '/') trim it off the string.
Definition: fil0fil.h:1003
static constexpr auto DOT_DOT_SLASH
Definition: fil0fil.h:634
static bool has_prefix(const std::string &path, const std::string prefix)
Definition: fil0fil.h:885
static bool has_suffix(ib_file_suffix sfx, const std::string &path)
Check if the file has the the specified suffix.
Definition: fil0fil.h:970
We use Flush_observer to track flushing of non-redo logged pages in bulk create index(btr0load....
Definition: buf0flu.h:270
The IO Context that is passed down to the low level IO code.
Definition: os0file.h:265
Allows to monitor an event processing times, allowing to throttle the processing to one per throttle_...
Definition: ut0ut.h:368
For measuring time elapsed.
Definition: ut0ut.h:306
Page identifier.
Definition: buf0types.h:207
Page size descriptor.
Definition: page0size.h:50
size_t physical() const
Retrieve the physical page size (on-disk).
Definition: page0size.h:121
const char * p
Definition: ctype-mb.cc:1235
int page
Definition: ctype-mb.cc:1234
dberr_t
Definition: db0err.h:39
Data dictionary global types.
static duk_ret_t normalize_path(duk_context *ctx, duk_idx_t obj_idx)
Definition: duk_module_shim.cc:76
static constexpr char general_space_name[]
This tablespace name is used internally during file discovery to open a general tablespace before the...
Definition: fil0fil.h:83
bool fil_system_get_file_by_space_num(space_id_t space_num, space_id_t &space_id, std::string &name)
Fetch the file name opened for an undo space number from the file map.
Definition: fil0fil.cc:4473
const byte * fil_tablespace_redo_encryption(const byte *ptr, const byte *end, space_id_t space_id, lsn_t lsn)
Parse and process an encryption redo record.
Definition: fil0fil.cc:10658
constexpr page_type_t FIL_PAGE_TYPE_LOB_FIRST
The first page of an uncompressed LOB.
Definition: fil0fil.h:1311
bool fil_system_get_file_by_space_id(space_id_t space_id, std::string &name)
Fetch the file name opened for a space_id from the file map.
Definition: fil0fil.cc:4467
void fil_purge()
Allows fil system to do periodical cleanup.
Definition: fil0fil.cc:11686
bool fil_is_page_type_valid(page_type_t type) noexcept
Check if the given page type is valid.
Definition: fil0fil.cc:11737
bool fil_check_missing_tablespaces()
This function should be called after recovery has completed.
Definition: fil0fil.cc:10228
constexpr page_type_t FIL_PAGE_UNDO_LOG
Undo log page.
Definition: fil0fil.h:1240
fil_space_t * fil_space_create(const char *name, space_id_t space_id, uint32_t flags, fil_type_t purpose)
Create a space memory object and put it to the fil_system hash table.
Definition: fil0fil.cc:3316
std::ostream & operator<<(std::ostream &out, const fil_addr_t &obj)
Definition: fil0fil.h:1217
constexpr page_type_t FIL_PAGE_TYPE_LOB_INDEX
Index pages of uncompressed LOB.
Definition: fil0fil.h:1305
constexpr page_type_t FIL_PAGE_ENCRYPTED_RTREE
Encrypted R-tree page.
Definition: fil0fil.h:1290
bool fil_path_is_known(const std::string &path)
Check if a path is known to InnoDB meaning that it is in or under one of the four path settings scann...
Definition: fil0fil.cc:11519
bool fil_validate()
Checks the consistency of the tablespace cache.
Definition: fil0fil.cc:1960
constexpr page_no_t PAGE_NO_MAX
Maximum Page Number, one less than FIL_NULL.
Definition: fil0fil.h:1165
constexpr page_type_t FIL_PAGE_TYPE_LOB_DATA
Data pages of uncompressed LOB.
Definition: fil0fil.h:1308
constexpr page_type_t FIL_PAGE_TYPE_ZBLOB
First compressed BLOB page.
Definition: fil0fil.h:1271
uint32_t fil_space_get_flags(space_id_t space_id)
Returns the flags of the space.
Definition: fil0fil.cc:3536
void fil_io_set_encryption(IORequest &req_type, const page_id_t &page_id, fil_space_t *space)
Set encryption information for IORequest.
Definition: fil0fil.cc:7548
dberr_t fil_set_compression(space_id_t space_id, const char *algorithm)
Set the compression type for the tablespace.
Definition: fil0fil.cc:8845
page_no_t fil_page_get_prev(const byte *page)
Get the predecessor of a file page.
Definition: fil0fil.cc:8208
Fil_path MySQL_undo_path
The MySQL server –innodb-undo-directory value.
Definition: fil0fil.cc:282
bool fil_page_index_page_check(const byte *page)
Check whether the page is index page (either regular Btree index or Rtree index.
Definition: fil0fil.h:1348
rw_lock_t * fil_space_get_latch(space_id_t space_id)
Returns the latch of a file space.
Definition: fil0fil.cc:2247
bool fil_delete_file(const char *path)
Delete the tablespace file and any related files like .cfg.
Definition: fil0fil.cc:8724
ulint fil_space_get_n_reserved_extents(space_id_t space_id)
Gets the number of reserved extents.
Definition: fil0fil.cc:7400
const byte * fil_tablespace_redo_create(const byte *ptr, const byte *end, const page_id_t &page_id, ulint parsed_bytes, bool parse_only)
Redo a tablespace create.
Definition: fil0fil.cc:10296
ulong srv_fast_shutdown
The value of the configuration parameter innodb_fast_shutdown, controlling the InnoDB shutdown.
Definition: srv0srv.cc:568
constexpr size_t FIL_NODE_MAGIC_N
Value of fil_node_t::magic_n.
Definition: fil0fil.h:587
void fil_open_system_tablespace_files()
Opens all log files and system tablespace data files.
Definition: fil0fil.cc:3758
constexpr size_t FIL_SCAN_MAX_TABLESPACES_PER_THREAD
Maximum number of tablespaces to be scanned by a thread while scanning for available tablespaces duri...
Definition: fil0fil.h:64
constexpr page_type_t FIL_PAGE_COMPRESSED_AND_ENCRYPTED
Compressed and Encrypted page.
Definition: fil0fil.h:1287
char * fil_path_to_space_name(const char *filename)
Convert a file name to a tablespace name.
Definition: fil0fil.cc:5987
uint16_t page_type_t
Definition: fil0fil.h:1224
page_no_t fil_space_get_undo_initial_size(space_id_t space_id)
Returns the size of an undo space just after it was initialized.
Definition: fil0fil.cc:3500
void fil_encryption_reencrypt(std::vector< space_id_t > &sid_vector)
Roencrypt the tablespace keys by current master key.
Definition: fil0fil.cc:9134
fil_type_t fil_space_get_type(space_id_t space_id)
Gets the type of a file space.
Definition: fil0fil.cc:2264
void fil_space_inc_redo_skipped_count(space_id_t space_id)
Increase redo skipped count for a tablespace.
Definition: fil0fil.cc:4734
void fil_space_set_flags(fil_space_t *space, uint32_t flags)
Sets the flags of the tablespace.
Definition: fil0fil.cc:9389
dberr_t fil_tablespace_open_for_recovery(space_id_t space_id)
Open the tablespace and also get the tablespace filenames, space_id must already be known.
Definition: fil0fil.cc:9925
const byte * fil_tablespace_redo_rename(const byte *ptr, const byte *end, const page_id_t &page_id, ulint parsed_bytes, bool parse_only)
Redo a tablespace rename.
Definition: fil0fil.cc:10371
constexpr size_t FIL_IBD_FILE_INITIAL_SIZE_5_7
An empty tablespace (CREATE TABLESPACE) has minimum of 4 pages and an empty CREATE TABLE (file_per_ta...
Definition: fil0fil.h:1159
bool fil_space_extend(fil_space_t *space, page_no_t size)
Try to extend a tablespace if it is smaller than the specified size.
Definition: fil0fil.cc:6780
constexpr page_type_t FIL_PAGE_TYPE_ZLOB_FRAG_ENTRY
Index pages of fragment pages (compressed LOB).
Definition: fil0fil.h:1327
dberr_t fil_close_tablespace(space_id_t space_id)
Closes a single-table tablespace.
Definition: fil0fil.cc:4344
constexpr page_type_t FIL_PAGE_INODE
Index node.
Definition: fil0fil.h:1243
bool fil_update_partition_name(space_id_t space_id, uint32_t fsp_flags, bool update_space, std::string &space_name, std::string &dd_path)
Compare and update space name and dd path for partitioned table.
Definition: fil0fil.cc:10115
void fil_free_scanned_files()
Free the data structures required for recovery.
Definition: fil0fil.cc:11528
constexpr page_type_t FIL_PAGE_TYPE_UNUSED
This page type is unused.
Definition: fil0fil.h:1237
constexpr page_type_t FIL_PAGE_INDEX
File page types (values of FIL_PAGE_TYPE)
Definition: fil0fil.h:1228
std::atomic_size_t fil_n_files_open
Number of files currently open.
Definition: fil0fil.cc:295
bool MySQL_undo_path_is_unique
The undo path is different from any other known directory.
Definition: fil0fil.cc:285
void fil_space_dec_redo_skipped_count(space_id_t space_id)
Decrease redo skipped count for a tablespace.
Definition: fil0fil.cc:4750
constexpr page_type_t FIL_PAGE_RTREE
R-tree node.
Definition: fil0fil.h:1231
void fil_space_open_if_needed(fil_space_t *space)
During crash recovery, open a tablespace if it had not been opened yet, to get valid size and flags.
Definition: fil0fil.h:2055
constexpr size_t FIL_IBD_FILE_INITIAL_SIZE
Initial size of a single-table tablespace in pages.
Definition: fil0fil.h:1153
static constexpr char undo_space_name[]
This tablespace name is used as the prefix for implicit undo tablespaces and during file discovery to...
Definition: fil0fil.h:88
bool fil_space_exists_in_mem(space_id_t space_id, const char *name, bool print_err, bool adjust_space)
Returns true if a matching tablespace exists in the InnoDB tablespace memory cache.
Definition: fil0fil.cc:6437
bool fil_space_read_name_and_filepath(space_id_t space_id, char **name, char **filepath)
Looks for a pre-existing fil_space_t with the given tablespace ID and, if found, returns the name and...
Definition: fil0fil.cc:5956
dberr_t fil_set_encryption(space_id_t space_id, Encryption::Type algorithm, byte *key, byte *iv)
Set the encryption type for the tablespace.
Definition: fil0fil.cc:8938
dberr_t fil_rename_tablespace_by_id(space_id_t space_id, const char *old_name, const char *new_name)
Rename a tablespace.
Definition: fil0fil.cc:5465
constexpr size_t FIL_IBT_FILE_INITIAL_SIZE
Definition: fil0fil.h:1154
void fil_space_update_name(fil_space_t *space, const char *name)
Update the tablespace name.
Definition: fil0fil.cc:11535
bool fil_open_files_limit_update(size_t &new_max_open_files)
Changes the maximum opened files limit.
Definition: fil0fil.cc:3633
constexpr page_no_t FIL_NULL
'null' (undefined) page offset in the context of file spaces
Definition: fil0fil.h:1162
constexpr size_t FIL_SPACE_MAGIC_N
Value of fil_space_t::magic_n.
Definition: fil0fil.h:584
dberr_t fil_reset_encryption(space_id_t space_id)
Reset the encryption type for the tablespace.
Definition: fil0fil.cc:8967
size_t fil_get_scan_threads(size_t num_files)
Calculate the number of threads that can be spawned to scan the given number of files taking into the...
Definition: fil0fil.cc:133
void fil_space_close(space_id_t space_id)
Close each file of a tablespace if open.
Definition: fil0fil.cc:3588
fil_space_t * fil_space_acquire(space_id_t space_id)
Acquire a tablespace when it could be dropped concurrently.
Definition: fil0fil.cc:4033
fil_space_t * fil_space_acquire_silent(space_id_t space_id)
Acquire a tablespace that may not exist.
Definition: fil0fil.cc:4042
Fil_state
Result of comparing a path.
Definition: fil0fil.h:130
@ MATCHES
The path matches what was found during the scan.
@ MISSING
No MLOG_FILE_DELETE record and the file could not be found.
@ DELETED
A MLOG_FILE_DELETE was found, file was deleted.
@ MOVED
Space ID matches but the paths don't match.
@ RENAMED
Tablespace and/or filename was renamed.
@ MOVED_PREV
Space ID and paths match but dd_table data dir flag is false despite the file being outside default d...
@ COMPARE_ERROR
In case of error during comparison.
void fil_add_moved_space(dd::Object_id dd_object_id, space_id_t space_id, const char *space_name, const std::string &old_path, const std::string &new_path, bool dd_flag_missing)
Add tablespace to the set of tablespaces to be updated in DD.
Definition: fil0fil.cc:10107
dberr_t fil_write_flushed_lsn(lsn_t lsn)
Write the flushed LSN to the page header of the first page in the system tablespace.
Definition: fil0fil.cc:3966
char * fil_space_get_first_path(space_id_t space_id)
Returns the path from the first fil_node_t found with this space ID.
Definition: fil0fil.cc:3462
constexpr page_type_t FIL_PAGE_TYPE_ZLOB_FRAG
Fragment pages of compressed LOB.
Definition: fil0fil.h:1324
char * fil_node_create(const char *name, page_no_t size, fil_space_t *space, bool is_raw, bool atomic_write, page_no_t max_pages=PAGE_NO_MAX)
Attach a file to a tablespace.
Definition: fil0fil.cc:2435
constexpr page_type_t FIL_PAGE_TYPE_LAST
Note the highest valid non-index page_type_t.
Definition: fil0fil.h:1330
void fil_tablespace_open_init_for_recovery(bool recovery)
Read the tablespace id to path mapping from the file.
fil_addr_t fil_addr_null
The null file address.
Definition: fil0fil.cc:329
void fil_close_all_files()
Closes all open files.
Definition: fil0fil.cc:3903
void fil_init(ulint max_n_open)
Initializes the tablespace memory cache.
Definition: fil0fil.cc:3618
size_t fil_encryption_rotate()
Rotate the tablespace keys by new master key.
Definition: fil0fil.cc:9132
bool fil_page_type_is_index(page_type_t page_type)
Check whether the page type is index (Btree or Rtree or SDI) type.
Definition: fil0fil.h:1333
void fil_set_scan_dirs(const std::string &directories)
Normalize and save a list of directories to scan for datafiles.
Definition: fil0fil.cc:11507
fil_space_t * fil_space_get_sys_space()
Definition: fil0fil.h:2085
void fil_no_punch_hole(fil_node_t *file)
Note that the file system where the file resides doesn't support PUNCH HOLE.
Definition: fil0fil.cc:8843
const page_size_t fil_space_get_page_size(space_id_t space_id, bool *found)
Returns the page size of the space and whether it is compressed or not.
Definition: fil0fil.cc:3603
dberr_t fil_scan_for_tablespaces()
Discover tablespaces by reading the header from .ibd files.
Definition: fil0fil.cc:11513
byte fil_faddr_t
'type' definition in C: an address stored in a file page is a string of bytes
Definition: fil0fil.h:1176
dberr_t fil_rename_tablespace_check(space_id_t space_id, const char *old_path, const char *new_path, bool is_discarded)
Test if a tablespace file can be renamed to a new filepath by checking if that the old filepath exist...
Definition: fil0fil.cc:5090
void fil_space_release(fil_space_t *space)
Release a tablespace acquired with fil_space_acquire().
Definition: fil0fil.cc:4048
bool fil_truncate_tablespace(space_id_t space_id, page_no_t size_in_pages)
Truncate the tablespace to needed size.
Definition: fil0fil.cc:4725
void fil_close()
Initializes the tablespace memory cache.
Definition: fil0fil.cc:8242
const char * fil_get_page_type_str(page_type_t type) noexcept
Get the page type as a string.
Definition: fil0fil.cc:11698
void fil_flush_file_spaces()
Flush to disk the writes in file spaces possibly cached by the OS (note: spaces of type FIL_TYPE_TEMP...
Definition: fil0fil.cc:8196
std::vector< std::string, ut::allocator< std::string > > Filenames
Definition: fil0fil.h:116
bool fil_space_reserve_free_extents(space_id_t space_id, ulint n_free_now, ulint n_to_reserve)
Tries to reserve free extents in a file space.
Definition: fil0fil.cc:7348
dberr_t fil_ibd_open(bool validate, fil_type_t purpose, space_id_t space_id, uint32_t flags, const char *space_name, const char *path_in, bool strict, bool old_space)
Open a single-table tablespace and optionally do some validation such as checking that the space id i...
Definition: fil0fil.cc:5771
page_no_t fil_page_get_next(const byte *page)
Get the successor of a file page.
Definition: fil0fil.cc:8215
constexpr size_t FIL_SCAN_THREADS_PER_CORE
Number of threads per core.
Definition: fil0fil.h:72
constexpr page_type_t FIL_PAGE_TYPE_ZLOB_DATA
Data pages of compressed LOB.
Definition: fil0fil.h:1317
constexpr page_type_t FIL_PAGE_TYPE_XDES
Extent descriptor page.
Definition: fil0fil.h:1265
fil_type_t
File types.
Definition: fil0fil.h:120
@ FIL_TYPE_TEMPORARY
temporary tablespace (temporary undo log or tables)
Definition: fil0fil.h:122
@ FIL_TYPE_IMPORT
a tablespace that is being imported (no logging until finished)
Definition: fil0fil.h:124
@ FIL_TYPE_TABLESPACE
persistent tablespace (for system, undo log or tables)
Definition: fil0fil.h:126
void fil_space_set_undo_size(space_id_t space_id, bool use_current)
This is called for an undo tablespace after it has been initialized or opened.
Definition: fil0fil.cc:3514
constexpr page_type_t FIL_PAGE_COMPRESSED
Compressed page.
Definition: fil0fil.h:1281
std::vector< space_id_t, ut::allocator< space_id_t > > Space_ids
Definition: fil0fil.h:117
std::atomic< std::uint64_t > fil_n_pending_tablespace_flushes
Number of pending tablespace flushes.
Definition: fil0fil.cc:292
constexpr page_type_t FIL_PAGE_SDI
Tablespace SDI Index page.
Definition: fil0fil.h:1234
bool fil_tablespace_lookup_for_recovery(space_id_t space_id)
Lookup the tablespace ID.
Definition: fil0fil.cc:9872
dberr_t fil_rename_tablespace(space_id_t space_id, const char *old_path, const char *new_name, const char *new_path_in)
Rename a single-table tablespace.
Definition: fil0fil.cc:5389
dberr_t fil_tablespace_iterate(const Encryption_metadata &encryption_metadata, dict_table_t *table, ulint n_io_buffers, Compression::Type compression_type, PageCallback &callback)
Iterate over all the pages in the tablespace.
Definition: fil0fil.cc:8532
void fil_space_set_imported(space_id_t space_id)
Note that a tablespace has been imported.
Definition: fil0fil.cc:2278
constexpr size_t FIL_SCAN_MAX_THREADS
Maximum number of threads that will be used for scanning the tablespace files.
Definition: fil0fil.h:69
constexpr uint32_t UNDO_INITIAL_SIZE
Initial size of an UNDO tablespace when it is created new or truncated under low load.
Definition: fil0fil.h:101
void fil_extend_tablespaces_to_stored_len()
Extends all tablespaces to the size stored in the space header.
void fil_space_release_free_extents(space_id_t space_id, ulint n_reserved)
Releases free extents in a file space.
Definition: fil0fil.cc:7374
constexpr page_type_t FIL_PAGE_TYPE_ZBLOB2
Subsequent compressed BLOB page.
Definition: fil0fil.h:1274
constexpr page_type_t FIL_PAGE_TYPE_UNKNOWN
In old tablespaces, garbage in FIL_PAGE_TYPE is replaced with this value when flushing pages.
Definition: fil0fil.h:1278
constexpr page_type_t FIL_PAGE_TYPE_ZLOB_FIRST
The first page of a compressed LOB.
Definition: fil0fil.h:1314
fil_space_t * fil_space_get(space_id_t space_id)
Look up a tablespace.
Definition: fil0fil.cc:2230
constexpr page_type_t FIL_PAGE_TYPE_ALLOCATED
Freshly allocated page.
Definition: fil0fil.h:1250
constexpr page_type_t FIL_PAGE_TYPE_LEGACY_DBLWR
Legacy doublewrite buffer page.
Definition: fil0fil.h:1299
constexpr page_type_t FIL_PAGE_IBUF_FREE_LIST
Insert buffer free list.
Definition: fil0fil.h:1246
void fil_set_max_space_id_if_bigger(space_id_t max_id)
Sets the max tablespace id counter if the given number is bigger than the previous value.
Definition: fil0fil.cc:3954
volatile bool recv_recovery_on
true when applying redo log records during crash recovery; false otherwise.
Definition: log0recv.cc:105
constexpr page_type_t FIL_PAGE_SDI_ZBLOB
Compressed SDI BLOB page.
Definition: fil0fil.h:1296
constexpr page_type_t FIL_PAGE_TYPE_TRX_SYS
Transaction system data.
Definition: fil0fil.h:1259
Fil_state fil_tablespace_path_equals(space_id_t space_id, const char *space_name, ulint fsp_flags, std::string old_path, std::string *new_path)
Lookup the tablespace ID and return the path to the file.
Definition: fil0fil.cc:9929
page_type_t fil_page_get_type(const byte *page)
Get the file page type.
Definition: fil0fil.h:1341
constexpr page_type_t FIL_PAGE_ENCRYPTED
Encrypted page.
Definition: fil0fil.h:1284
dberr_t fil_set_autoextend_size(space_id_t space_id, uint64_t autoextend_size)
Set the autoextend_size attribute for the tablespace.
Definition: fil0fil.cc:8912
page_no_t fil_space_get_size(space_id_t space_id)
Returns the size of the space in pages.
Definition: fil0fil.cc:3486
dberr_t fil_ibt_create(space_id_t space_id, const char *name, const char *path, uint32_t flags, page_no_t size)
Create a session temporary tablespace (IBT) file.
Definition: fil0fil.cc:5763
Compression::Type fil_get_compression(space_id_t space_id)
Get the compression algorithm for a tablespace.
Definition: fil0fil.cc:8902
space_id_t fil_space_get_id_by_name(const char *name)
Returns the space ID based on the tablespace name.
Definition: fil0fil.cc:6450
bool fil_assign_new_space_id(space_id_t *space_id)
Assigns a new space id for a new single-table tablespace.
Definition: fil0fil.cc:3403
constexpr space_id_t SPACE_UNKNOWN
Unknown space id.
Definition: fil0fil.h:1168
void fil_aio_wait(ulint segment)
Waits for an AIO operation to complete.
Definition: fil0fil.cc:7915
Fil_path MySQL_datadir_path
The MySQL server –datadir value.
Definition: fil0fil.cc:279
bool fil_op_replay_rename_for_ddl(const page_id_t &page_id, const char *old_name, const char *new_name)
Replay a file rename operation for ddl replay.
Definition: fil0fil.cc:9815
constexpr page_type_t FIL_PAGE_TYPE_SYS
System page.
Definition: fil0fil.h:1256
bool fil_space_is_redo_skipped(space_id_t space_id)
Check whether a single-table tablespace is redo skipped.
Definition: fil0fil.cc:4768
dberr_t fil_io(const IORequest &type, bool sync, const page_id_t &page_id, const page_size_t &page_size, ulint byte_offset, ulint len, void *buf, void *message)
Read or write data from a file.
Definition: fil0fil.cc:7972
void fil_page_reset_type(const page_id_t &page_id, byte *page, ulint type, mtr_t *mtr)
Reset the page type.
Definition: fil0fil.cc:8234
constexpr page_type_t FIL_PAGE_SDI_BLOB
Uncompressed SDI BLOB page.
Definition: fil0fil.h:1293
dberr_t fil_rename_precheck(const dict_table_t *old_table, const dict_table_t *new_table, const char *tmp_name)
Check if swapping two .ibd files can be done without failure.
Definition: fil0fil.cc:8750
constexpr page_type_t FIL_PAGE_TYPE_BLOB
Uncompressed BLOB page.
Definition: fil0fil.h:1268
bool fil_addr_is_null(const fil_addr_t &addr)
Returns true if file address is undefined.
Definition: fil0fil.cc:8201
constexpr page_type_t FIL_PAGE_TYPE_ZLOB_INDEX
Index pages of compressed LOB.
Definition: fil0fil.h:1321
void fil_page_set_type(byte *page, ulint type)
Sets the file page type.
Definition: fil0fil.cc:8222
const byte * fil_tablespace_redo_extend(const byte *ptr, const byte *end, const page_id_t &page_id, ulint parsed_bytes, bool parse_only)
Redo a tablespace extend.
Definition: fil0fil.cc:10423
dberr_t fil_discard_tablespace(space_id_t space_id)
Discards a single-table tablespace.
Definition: fil0fil.cc:4801
size_t fil_count_undo_deleted(space_id_t undo_num)
Count how many truncated undo space IDs are still tracked in the buffer pool and the file_system cach...
Definition: fil0fil.cc:11688
ib_file_suffix
Common InnoDB file extensions.
Definition: fil0fil.h:590
@ DWR
Definition: fil0fil.h:597
@ BWR
Definition: fil0fil.h:598
@ IBT
Definition: fil0fil.h:595
@ IBD
Definition: fil0fil.h:592
@ CFP
Definition: fil0fil.h:594
@ CFG
Definition: fil0fil.h:593
@ NO_EXT
Definition: fil0fil.h:591
@ IBU
Definition: fil0fil.h:596
const char * dot_ext[]
Common InnoDB file extensions.
Definition: fil0fil.cc:288
dberr_t fil_ibd_create(space_id_t space_id, const char *name, const char *path, uint32_t flags, page_no_t size)
Create an IBD tablespace file.
Definition: fil0fil.cc:5755
constexpr page_type_t FIL_PAGE_TYPE_RSEG_ARRAY
Rollback Segment Array page.
Definition: fil0fil.h:1302
void fil_adjust_name_import(dict_table_t *table, const char *path, ib_file_suffix extn)
Adjust file name for import for partition files in different letter case.
Definition: fil0fil.cc:8453
const byte * fil_tablespace_redo_delete(const byte *ptr, const byte *end, const page_id_t &page_id, ulint parsed_bytes, bool parse_only)
Redo a tablespace delete.
Definition: fil0fil.cc:10598
dberr_t fil_open_for_business(bool read_only_mode)
Free the Tablespace_files instance.
Definition: fil0fil.cc:9804
dberr_t fil_write_initial_pages(pfs_os_file_t file, const char *path, fil_type_t type, page_no_t size, const byte *encrypt_info, space_id_t space_id, uint32_t &space_flags, bool &atomic_write, bool &punch_hole)
Write initial pages for a new tablespace file created.
Definition: fil0fil.cc:5470
bool fil_space_open(space_id_t space_id)
Open each file of a tablespace if not already open.
Definition: fil0fil.cc:3574
dberr_t fil_delete_tablespace(space_id_t space_id, buf_remove_t buf_remove)
Deletes an IBD or IBU tablespace.
Definition: fil0fil.cc:4645
void fil_flush(space_id_t space_id)
Flushes to disk possible writes cached by the OS.
Definition: fil0fil.cc:8154
void fil_complete_write(space_id_t space_id, fil_node_t *node)
Definition: fil0fil.cc:11898
constexpr page_type_t FIL_PAGE_TYPE_FSP_HDR
File space header.
Definition: fil0fil.h:1262
std::string fil_get_dirs()
Get the list of directories that datafiles can reside in.
Definition: fil0fil.cc:11525
dberr_t fil_prepare_file_for_io(space_id_t space_id, page_no_t &page_no, fil_node_t **node_out)
Definition: fil0fil.cc:11878
void fil_set_scan_dir(const std::string &directory, bool is_undo_dir=false)
Normalize and save a directory to scan for datafiles.
Definition: fil0fil.cc:11503
void fil_page_check_type(const page_id_t &page_id, byte *page, ulint type, mtr_t *mtr)
Check (and if needed, reset) the page type.
Definition: fil0fil.h:1852
constexpr page_type_t FIL_PAGE_IBUF_BITMAP
Insert buffer bitmap.
Definition: fil0fil.h:1253
The low-level file system page header & trailer offsets.
constexpr uint32_t FIL_PAGE_TYPE
file page type: FIL_PAGE_INDEX,..., 2 bytes.
Definition: fil0types.h:76
static bool equal(const Item *i1, const Item *i2, const Field *f2)
Definition: sql_select.cc:3860
constexpr uint32_t FSP_FLAGS_GET_ENCRYPTION(uint32_t flags)
Return the contents of the ENCRYPTION field.
Definition: fsp0types.h:351
static int flags[50]
Definition: hp_test1.cc:40
Insert buffer global types.
unsigned char byte
Blob class.
Definition: common.h:151
Recovery.
uint64_t lsn_t
Type used for all log sequence number storage and arithmetic.
Definition: log0types.h:63
A better implementation of the UNIX ctype(3) library.
char my_tolower(const CHARSET_INFO *cs, char ch)
Definition: m_ctype.h:563
MYSQL_STRINGS_EXPORT CHARSET_INFO my_charset_filename
Definition: ctype-utf8.cc:7056
static uint16_t mach_read_from_2(const byte *b)
The following function is used to fetch data from 2 consecutive bytes.
static const char * filepath
Definition: myisamlog.cc:97
static size_t file_size
Definition: mysql_config_editor.cc:72
static char * path
Definition: mysqldump.cc:149
static PFS_engine_table_share_proxy table
Definition: pfs.cc:61
Definition: buf0block_hint.cc:30
unsigned long long Object_id
Definition: object_id.h:31
Innodb data dictionary name.
Definition: dict0dd.cc:7295
Definition: os0file.h:89
Json_data_extension ext
Definition: backend.cc:52
@ NONE
Definition: base.h:45
bool isalpha(const char &ch)
Definition: parsing_helpers.h:37
HARNESS_EXPORT void trim(std::string &str)
Removes both leading and trailing whitespaces from the string.
Definition: string_utils.cc:70
size_t size(const char *const c)
Definition: base64.h:46
Cursor end()
A past-the-end Cursor.
Definition: rules_table_service.cc:192
os_file_type_t
Definition: os0file.h:616
uint64_t os_offset_t
File offset in bytes.
Definition: os0file.h:87
A class describing a page size.
const char * filename
Definition: pfs_example_component_population.cc:67
required string key
Definition: replication_asynchronous_connection_failover.proto:60
required string type
Definition: replication_group_member_actions.proto:34
case opt name
Definition: sslopt-case.h:29
Type
Algorithm types supported.
Definition: file.h:53
@ NONE
No compression.
Definition: file.h:59
Encryption metadata.
Definition: os0enc.h:445
Encryption::Type m_type
Encrypt type.
Definition: os0enc.h:447
Callback functor.
Definition: fil0fil.h:1894
virtual ulint get_space_flags() const 1=0
virtual dberr_t init(os_offset_t file_size, const buf_block_t *block) 1=0
Called for page 0 in the tablespace file at the start.
pfs_os_file_t m_file
File handle to the tablespace.
Definition: fil0fil.h:1947
virtual dberr_t operator()(os_offset_t offset, buf_block_t *block) 1=0
Called for every page in the tablespace.
page_size_t m_page_size
The tablespace page size.
Definition: fil0fil.h:1944
PageCallback()
Default constructor.
Definition: fil0fil.h:1896
void set_file(const char *filename, pfs_os_file_t file) 1
Set the name of the physical file and the file handle that is used to open it for the file that is be...
Definition: fil0fil.h:1921
void set_page_size(const buf_frame_t *page) 1
Set the tablespace table size.
Definition: fil0fil.cc:8716
PageCallback(PageCallback &&)=delete
const char * m_filepath
Physical file path.
Definition: fil0fil.h:1950
const page_size_t & get_page_size() const
The compressed page size.
Definition: fil0fil.h:1939
PageCallback(const PageCallback &)=delete
virtual space_id_t get_space_id() const 1=0
PageCallback & operator=(const PageCallback &)=delete
The buffer control block structure.
Definition: buf0buf.h:1747
Data structure for a database table.
Definition: dict0mem.h:1918
File space address.
Definition: fil0fil.h:1179
fil_addr_t()
Definition: fil0fil.h:1181
std::ostream & print(std::ostream &out) const
Print a string representation.
Definition: fil0fil.h:1201
uint32_t boffset
Byte offset within the page.
Definition: fil0fil.h:1211
fil_addr_t(page_no_t p, uint32_t boff)
Constructor.
Definition: fil0fil.h:1186
page_no_t page
Page number within a space.
Definition: fil0fil.h:1208
bool is_equal(const fil_addr_t &rhs) const
Compare to instances.
Definition: fil0fil.h:1191
bool is_null() const
Check if the file address is null.
Definition: fil0fil.h:1197
File node of a tablespace or the log data space.
Definition: fil0fil.h:158
page_no_t max_size
maximum size of the file in database pages
Definition: fil0fil.h:207
void set_flushed()
Sets file to flushed state.
Definition: fil0fil.h:167
size_t n_pending_ios
count of pending I/O's; is_open must be true if nonzero
Definition: fil0fil.h:210
fil_space_t * space
tablespace containing this file
Definition: fil0fil.h:172
size_t block_size
block size to use for punching holes
Definition: fil0fil.h:231
bool is_open
whether this file is open.
Definition: fil0fil.h:180
bool atomic_write
whether atomic write is enabled for this file
Definition: fil0fil.h:234
pfs_os_file_t handle
file handle (valid if is_open)
Definition: fil0fil.h:183
page_no_t init_size
initial size of the file in database pages; FIL_IBD_FILE_INITIAL_SIZE by default
Definition: fil0fil.h:204
page_no_t size
size of the file in database pages (0 if not known yet); the possible last incomplete megabyte may be...
Definition: fil0fil.h:196
size_t magic_n
FIL_NODE_MAGIC_N.
Definition: fil0fil.h:237
size_t n_pending_flushes
count of pending flushes; is_open must be true if nonzero
Definition: fil0fil.h:213
bool is_flushed() const
Returns true if the file is flushed.
Definition: fil0fil.h:162
os_event_t sync_event
event that groups and serializes calls to fsync
Definition: fil0fil.h:186
int64_t flush_counter
the modification_counter of the latest flush to disk
Definition: fil0fil.h:222
page_no_t flush_size
Size of the file when last flushed, used to force the flush when file grows to keep the filesystem me...
Definition: fil0fil.h:200
bool can_be_closed() const
Returns true if the file can be closed.
Definition: fil0fil.cc:1835
UT_LIST_NODE_T(fil_node_t) List_node
Definition: fil0fil.h:169
bool punch_hole
whether the file system of this file supports PUNCH HOLE
Definition: fil0fil.h:228
bool is_offset_valid(os_offset_t byte_offset) const
Definition: fil0fil.h:2329
int64_t modification_counter
number of writes to the file since the system was started
Definition: fil0fil.h:219
List_node LRU
link to the fil_system->LRU list (keeping track of open files)
Definition: fil0fil.h:225
char * name
file name; protected by Fil_shard::m_mutex and log_sys->mutex.
Definition: fil0fil.h:175
bool is_being_extended
Set to true when a file is being extended.
Definition: fil0fil.h:216
bool is_raw_disk
whether the file actually is a raw device or disk partition
Definition: fil0fil.h:189
Tablespace or log data space.
Definition: fil0fil.h:241
void initialize() noexcept
Initializes fields.
Definition: fil0fil.h:341
bool initialize_while_extending()
Definition: fil0fil.cc:11915
std::ostream & print_xdes_pages(std::ostream &out) const
Print the extent descriptor pages of this tablespace into the given output stream.
Definition: fil0fil.cc:9499
fil_node_t * get_file_node(page_no_t *page_no) noexcept
Get the file node corresponding to the given page number of the tablespace.
Definition: fil0fil.cc:11780
ib::Timer m_last_extended
When the tablespace was extended last.
Definition: fil0fil.h:323
size_t get_reference_count() const
Definition: fil0fil.cc:11842
space_id_t id
Tablespace ID.
Definition: fil0fil.h:337
bool is_compressed() const noexcept
Check if the tablespace is compressed.
Definition: fil0fil.h:555
Encryption::Progress encryption_op_in_progress
Encryption is in progress.
Definition: fil0fil.h:542
std::atomic_bool m_deleted
true if the tablespace is marked for deletion.
Definition: fil0fil.h:429
void bump_version()
Bumps the space object version and cause all pages in buffer pool that reference the current space ob...
Definition: fil0fil.cc:11864
List_node unflushed_spaces
List of spaces with at least one unflushed file we have written to.
Definition: fil0fil.h:530
page_no_t size
Tablespace file size in pages; 0 if not known yet.
Definition: fil0fil.h:490
rw_lock_t latch
Latch protecting the file space storage allocation.
Definition: fil0fil.h:525
ib::Throttler m_prevent_file_open_wait_message_throttler
Throttles writing to log a message about long waiting for file to perform rename.
Definition: fil0fil.h:465
uint32_t flags
Tablespace flags; see fsp_flags_is_valid() and page_size_t(ulint) (constructor).
Definition: fil0fil.h:507
void release_free_extents(ulint n_reserved)
Release the reserved free extents.
Definition: fil0fil.cc:9472
page_no_t size_in_header
FSP_SIZE in the tablespace header; 0 if not known yet.
Definition: fil0fil.h:493
std::atomic< uint32_t > m_version
All pages in the buffer pool that reference this fil_space_t instance with version before this versio...
Definition: fil0fil.h:385
Encryption_metadata m_encryption_metadata
Encryption metadata.
Definition: fil0fil.h:539
bool prevent_file_open
true if we want to rename the .ibd file of tablespace and want to temporarily prevent other threads f...
Definition: fil0fil.h:461
page_no_t m_undo_extend
Extend undo tablespaces by so many pages.
Definition: fil0fil.h:326
uint64_t autoextend_size_in_bytes
Autoextend size.
Definition: fil0fil.h:496
uint32_t free_len
Length of the FSP_FREE list.
Definition: fil0fil.h:499
lsn_t m_header_page_flush_lsn
Flush lsn of header page.
Definition: fil0fil.h:545
void dec_ref() noexcept
Decrement the page reference count.
Definition: fil0fil.h:299
std::atomic_size_t m_n_ref_count
Number of buf_page_t entries that point to this instance.
Definition: fil0fil.h:425
std::atomic< uint64_t > m_bulk_extend_size
true if bulk operation is in progress.
Definition: fil0fil.h:435
Files files
Files attached to this tablespace.
Definition: fil0fil.h:487
bool stop_new_ops
We set this true when we start deleting a single-table tablespace.
Definition: fil0fil.h:474
ulint magic_n
FIL_SPACE_MAGIC_N.
Definition: fil0fil.h:548
uint32_t n_reserved_extents
Number of reserved free extents for ongoing operations like B-tree page split.
Definition: fil0fil.h:511
bool can_encrypt() const noexcept
Check if the encryption details, like the encryption key, type and other details, that are needed to ...
Definition: fil0fil.h:568
uint64_t get_auto_extend_size()
Definition: fil0fil.cc:11905
uint32_t get_current_version() const
Returns current version of the space object.
Definition: fil0fil.cc:11822
bool is_encrypted() const noexcept
Check if the tablespace is encrypted.
Definition: fil0fil.h:561
static fil_space_t * s_sys_space
System tablespace.
Definition: fil0fil.h:551
uint32_t n_pending_ops
This is positive when we have pending operations against this tablespace.
Definition: fil0fil.h:521
page_no_t free_limit
Contents of FSP_FREE_LIMIT.
Definition: fil0fil.h:502
std::atomic_bool m_is_bulk
true if bulk operation is in progress.
Definition: fil0fil.h:432
UT_LIST_NODE_T(fil_space_t) List_node
Definition: fil0fil.h:242
uint32_t get_recent_version() const
Returns current version of the space object.
Definition: fil0fil.cc:11826
char * name
Tablespace name.
Definition: fil0fil.h:334
std::vector< Observer *, ut::allocator< Observer * > > Flush_observers
Definition: fil0fil.h:320
void end_bulk_operation()
End bulk operation on the space.
Definition: fil0fil.h:446
Compression::Type compression_type
Compression algorithm.
Definition: fil0fil.h:536
uint32_t n_pending_flushes
This is positive when flushing the tablespace to disk; dropping of the tablespace is forbidden if thi...
Definition: fil0fil.h:515
fil_type_t purpose
Purpose.
Definition: fil0fil.h:483
void set_deleted()
Marks the space object for deletion.
Definition: fil0fil.cc:11850
bool was_not_deleted() const
Definition: fil0fil.cc:11814
bool is_in_unflushed_spaces
true if this space is currently in unflushed_spaces
Definition: fil0fil.h:533
bool has_no_references() const
Definition: fil0fil.cc:11832
bool is_bulk_operation_in_progress() const
Definition: fil0fil.h:449
page_no_t m_undo_initial
When an undo tablespace has been initialized with required header pages, that size is recorded here.
Definition: fil0fil.h:331
std::vector< fil_node_t, ut::allocator< fil_node_t > > Files
Definition: fil0fil.h:243
void begin_bulk_operation(uint64_t extend_size)
Begin bulk operation on the space.
Definition: fil0fil.h:440
void inc_ref() noexcept
Increment the page reference count.
Definition: fil0fil.h:288
ulint redo_skipped_count
Reference count for operations who want to skip redo log in the file space in order to make fsp_space...
Definition: fil0fil.h:479
bool is_deleted() const
Definition: fil0fil.cc:11809
Mini-transaction handle and buffer.
Definition: mtr0mtr.h:177
InnoDB condition variable.
Definition: os0event.cc:63
Common file descriptor for file IO instrumentation with PFS on windows and other platforms.
Definition: os0file.h:172
The structure used in the spin lock implementation of a read-write lock.
Definition: sync0rw.h:363
Definition: trx0trx.h:675
Version control for database, common definitions, and include files.
#define OS_PATH_SEPARATOR
Definition: univ.i:538
#define UNIV_NOTHROW
Definition: univ.i:456
#define OS_PATH_SEPARATOR_ALT
Definition: univ.i:539
unsigned long int ulint
Definition: univ.i:406
#define ut_ad(EXPR)
Debug assertion.
Definition: ut0dbg.h:105
#define ut_a(EXPR)
Abort execution if EXPR does not evaluate to nonzero.
Definition: ut0dbg.h:93
#define UT_LIST_NODE_T(t)
Macro used for legacy reasons.
Definition: ut0lst.h:64
Dynamic memory allocation routines and custom allocators specifically crafted to support memory instr...
static uint64_t lsn
Definition: xcom_base.cc:446