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