55#include <sys/statvfs.h>
68#define OS_FILE_PREFIX "#"
118typedef HANDLE os_file_dir_t;
125#define UNIV_NON_BUFFERED_IO
135#define OS_FILE_FROM_FD(fd) (HANDLE) _get_osfhandle(fd)
140#define OS_FD_FROM_FILE(file) _open_osfhandle((intptr_t)file, _O_RDONLY)
145#define OS_FILE_CLOSE_FD(fd) _close(fd)
157#define OS_FILE_FROM_FD(fd) fd
162#define OS_FD_FROM_FILE(file) file
167#define OS_FILE_CLOSE_FD(fd) (os_file_close(fd) ? 0 : OS_FD_CLOSED)
270#define IORequestRead IORequest(IORequest::READ)
271#define IORequestWrite IORequest(IORequest::WRITE)
524#if defined(HAVE_FALLOC_PUNCH_HOLE_AND_KEEP_SIZE) || defined(_WIN32)
549 os <<
" | DATA_FILE";
557 os <<
" | DISABLE_PARTIAL_IO_WARNINGS";
561 os <<
" | IGNORE_MISSING";
565 os <<
" | PUNCH_HOLE";
569 os <<
" | NO_COMPRESSION";
697 "(FN_REFLEN_SE < OS_FILE_MAX_PATH)");
716#ifndef UNIV_HOTBACKUP
779 const char *operation_name);
852#define register_pfs_file_open_begin(state, locker, key, op, name, \
855 locker = PSI_FILE_CALL(get_thread_file_name_locker)(state, key.m_value, \
856 op, name, &locker); \
857 if (locker != nullptr) { \
858 PSI_FILE_CALL(start_file_open_wait) \
859 (locker, src_location.filename, static_cast<uint>(src_location.line)); \
863#define register_pfs_file_open_end(locker, file, result) \
865 if (locker != nullptr) { \
866 file.m_psi = PSI_FILE_CALL(end_file_open_wait)(locker, result); \
870#define register_pfs_file_rename_begin(state, locker, key, op, from, to, \
873 locker = PSI_FILE_CALL(get_thread_file_name_locker)(state, key.m_value, \
874 op, from, &locker); \
875 if (locker != nullptr) { \
876 PSI_FILE_CALL(start_file_rename_wait) \
877 (locker, (size_t)0, from, to, src_location.filename, \
878 static_cast<uint>(src_location.line)); \
882#define register_pfs_file_rename_end(locker, from, to, result) \
884 if (locker != nullptr) { \
885 PSI_FILE_CALL(end_file_rename_wait)(locker, from, to, result); \
889#define register_pfs_file_close_begin(state, locker, key, op, name, \
892 locker = PSI_FILE_CALL(get_thread_file_name_locker)(state, key.m_value, \
893 op, name, &locker); \
894 if (locker != nullptr) { \
895 PSI_FILE_CALL(start_file_close_wait) \
896 (locker, src_location.filename, static_cast<uint>(src_location.line)); \
900#define register_pfs_file_close_end(locker, result) \
902 if (locker != nullptr) { \
903 PSI_FILE_CALL(end_file_close_wait)(locker, result); \
907#define register_pfs_file_io_begin(state, locker, file, count, op, \
911 PSI_FILE_CALL(get_thread_file_stream_locker)(state, file.m_psi, op); \
912 if (locker != nullptr) { \
913 PSI_FILE_CALL(start_file_wait) \
914 (locker, count, src_location.filename, \
915 static_cast<uint>(src_location.line)); \
919#define register_pfs_file_io_end(locker, count) \
921 if (locker != nullptr) { \
922 PSI_FILE_CALL(end_file_wait)(locker, count); \
942#define os_file_create(key, name, create, purpose, type, read_only, success) \
943 pfs_os_file_create_func(key, name, create, purpose, type, read_only, \
944 success, UT_LOCATION_HERE)
947#define os_file_create_simple_no_error_handling(key, name, create_mode, \
948 access, read_only, success) \
949 pfs_os_file_create_simple_no_error_handling_func( \
950 key, name, create_mode, access, read_only, os_innodb_umask_default, \
951 success, UT_LOCATION_HERE)
953#define os_file_create_simple_no_error_handling_with_umask( \
954 key, name, create_mode, access, read_only, umask, success) \
955 pfs_os_file_create_simple_no_error_handling_func(key, name, create_mode, \
956 access, read_only, umask, \
957 success, UT_LOCATION_HERE)
959#define os_file_create_simple_no_error_handling(key, name, create_mode, \
960 access, read_only, success) \
961 pfs_os_file_create_simple_no_error_handling_func( \
962 key, name, create_mode, access, read_only, success, UT_LOCATION_HERE)
965#define os_file_close_pfs(file) pfs_os_file_close_func(file, UT_LOCATION_HERE)
967#define os_aio(type, mode, name, file, buf, offset, n, read_only, message1, \
969 pfs_os_aio_func(type, mode, name, file, buf, offset, n, read_only, message1, \
970 message2, UT_LOCATION_HERE)
972#define os_file_read_pfs(type, file_name, file, buf, offset, n) \
973 pfs_os_file_read_func(type, file_name, file, buf, offset, n, UT_LOCATION_HERE)
975#define os_file_read_first_page_pfs(type, file_name, file, buf, n) \
976 pfs_os_file_read_first_page_func(type, file_name, file, buf, n, \
979#define os_file_copy_pfs(src, src_offset, dest, dest_offset, size) \
980 pfs_os_file_copy_func(src, src_offset, dest, dest_offset, size, \
983#define os_file_read_no_error_handling_pfs(type, file_name, file, buf, offset, \
985 pfs_os_file_read_no_error_handling_func(type, file_name, file, buf, offset, \
986 n, o, UT_LOCATION_HERE)
988#define os_file_read_no_error_handling_int_fd(type, file_name, file, buf, \
990 pfs_os_file_read_no_error_handling_int_fd_func( \
991 type, file_name, file, buf, offset, n, o, UT_LOCATION_HERE)
993#define os_file_write_pfs(type, name, file, buf, offset, n) \
994 pfs_os_file_write_func(type, name, file, buf, offset, n, UT_LOCATION_HERE)
996#define os_file_write_int_fd(type, name, file, buf, offset, n) \
997 pfs_os_file_write_int_fd_func(type, name, file, buf, offset, n, \
1000#define os_file_flush_pfs(file) pfs_os_file_flush_func(file, UT_LOCATION_HERE)
1002#define os_file_rename(key, oldpath, newpath) \
1003 pfs_os_file_rename_func(key, oldpath, newpath, UT_LOCATION_HERE)
1005#define os_file_delete(key, name) \
1006 pfs_os_file_delete_func(key, name, UT_LOCATION_HERE)
1008#define os_file_delete_if_exists(key, name, exist) \
1009 pfs_os_file_delete_if_exists_func(key, name, exist, UT_LOCATION_HERE)
1247 const char *oldpath,
1248 const char *newpath,
1283#define os_file_create(key, name, create, purpose, type, read_only, success) \
1284 os_file_create_func(name, create, purpose, type, read_only, success)
1288#define os_file_create_simple_no_error_handling(key, name, create_mode, \
1289 access, read_only, success) \
1290 os_file_create_simple_no_error_handling_func( \
1291 name, create_mode, access, read_only, os_innodb_umask_default, success)
1293#define os_file_create_simple_no_error_handling_with_umask( \
1294 key, name, create_mode, access, read_only, umask, success) \
1295 os_file_create_simple_no_error_handling_func(name, create_mode, access, \
1296 read_only, umask, success)
1300#define os_file_create_simple_no_error_handling(key, name, create_mode, \
1301 access, read_only, success) \
1302 os_file_create_simple_no_error_handling_func(name, create_mode, access, \
1307#define os_file_close_pfs(file) os_file_close_func(file)
1309#define os_aio(type, mode, name, file, buf, offset, n, read_only, message1, \
1311 os_aio_func(type, mode, name, file, buf, offset, n, read_only, message1, \
1314#define os_file_read_pfs(type, file_name, file, buf, offset, n) \
1315 os_file_read_func(type, file_name, file, buf, offset, n)
1317#define os_file_read_first_page_pfs(type, file_name, file, buf, n) \
1318 os_file_read_first_page_func(type, file_name, file, buf, n)
1320#define os_file_copy_pfs(src, src_offset, dest, dest_offset, size) \
1321 os_file_copy_func(src, src_offset, dest, dest_offset, size)
1323#define os_file_read_no_error_handling_pfs(type, file_name, file, buf, offset, \
1325 os_file_read_no_error_handling_func(type, file_name, file, buf, offset, n, o)
1327#define os_file_read_no_error_handling_int_fd(type, file_name, file, buf, \
1329 os_file_read_no_error_handling_func(type, file_name, OS_FILE_FROM_FD(file), \
1332#define os_file_write_pfs(type, name, file, buf, offset, n) \
1333 os_file_write_func(type, name, file, buf, offset, n)
1335#define os_file_write_int_fd(type, name, file, buf, offset, n) \
1336 os_file_write_func(type, name, OS_FILE_FROM_FD(file), buf, offset, n)
1338#define os_file_flush_pfs(file) os_file_flush_func(file)
1340#define os_file_rename(key, oldpath, newpath) \
1341 os_file_rename_func(oldpath, newpath)
1343#define os_file_delete(key, name) os_file_delete_func(name)
1345#define os_file_delete_if_exists(key, name, exist) \
1346 os_file_delete_if_exists_func(name, exist)
1351#define os_file_close(file) os_file_close_pfs(file)
1353#define os_file_close(file) os_file_close_pfs((file).m_file)
1357#define os_file_read(type, file_name, file, buf, offset, n) \
1358 os_file_read_pfs(type, file_name, file, buf, offset, n)
1360#define os_file_read(type, file_name, file, buf, offset, n) \
1361 os_file_read_pfs(type, file_name, file.m_file, buf, offset, n)
1365#define os_file_read_first_page(type, file_name, file, buf, n) \
1366 os_file_read_first_page_pfs(type, file_name, file, buf, n)
1368#define os_file_read_first_page(type, file_name, file, buf, n) \
1369 os_file_read_first_page_pfs(type, file_name, file.m_file, buf, n)
1373#define os_file_flush(file) os_file_flush_pfs(file)
1375#define os_file_flush(file) os_file_flush_pfs(file.m_file)
1379#define os_file_write(type, name, file, buf, offset, n) \
1380 os_file_write_pfs(type, name, file, buf, offset, n)
1382#define os_file_write(type, name, file, buf, offset, n) \
1383 os_file_write_pfs(type, name, file.m_file, buf, offset, n)
1387#define os_file_copy(src, src_offset, dest, dest_offset, size) \
1388 os_file_copy_pfs(src, src_offset, dest, dest_offset, size)
1390#define os_file_copy(src, src_offset, dest, dest_offset, size) \
1391 os_file_copy_pfs(src.m_file, src_offset, dest.m_file, dest_offset, size)
1395#define os_file_read_no_error_handling(type, file_name, file, buf, offset, n, \
1397 os_file_read_no_error_handling_pfs(type, file_name, file, buf, offset, n, o)
1399#define os_file_read_no_error_handling(type, file_name, file, buf, offset, n, \
1401 os_file_read_no_error_handling_pfs(type, file_name, file.m_file, buf, \
1405#ifdef UNIV_HOTBACKUP
1584#ifdef UNIV_ENABLE_UNIT_TEST_GET_PARENT_DIR
1586void unit_test_os_file_get_parent_dir();
1589#ifdef UNIV_HOTBACKUP
1591void meb_free_block_cache();
1724#ifndef UNIV_HOTBACKUP
1795 byte *dst,
ulint dst_len);
1806 byte *src,
ulint src_len,
byte *dst,
1840 template <
typename F>
1841 static void walk(
const Path &basedir,
bool recursive, F &&f) {
1843 walk_win32(basedir, recursive, [&](
const Path &
path,
size_t) { f(
path); });
1872 static void walk_win32(
const Path &basedir,
bool recursive,
Function &&f);
Class to scan the directory hierarchy using a depth first scan.
Definition: os0file.h:1827
std::string Path
Definition: os0file.h:1829
static bool is_directory(const Path &path)
Check if the path is a directory.
Definition: os0file.cc:7743
static void walk_posix(const Path &basedir, bool recursive, Function &&f)
Depth first traversal of the directory starting from basedir.
Definition: os0file.cc:3582
std::function< void(const Path &, size_t)> Function
Definition: os0file.h:1865
static void walk(const Path &basedir, bool recursive, F &&f)
Depth first traversal of the directory starting from basedir.
Definition: os0file.h:1841
Encryption algorithm.
Definition: os0enc.h:54
void set_initial_vector(const byte *iv)
Set initial vector.
Definition: os0enc.cc:1510
@ NONE
No encryption.
Definition: os0enc.h:60
void set_key(const byte *key)
Set encryption key.
Definition: os0enc.cc:1504
void set_key_length(ulint klen)
Set key length.
Definition: os0enc.cc:1508
static const char * to_string(Type type) noexcept
Convert to a "string".
Definition: os0enc.cc:218
void set_type(Type type)
Set encryption type.
Definition: os0enc.cc:1502
Type get_type() const
Get encryption type.
Definition: os0enc.cc:1500
The IO Context that is passed down to the low level IO code.
Definition: os0file.h:275
uint32_t m_original_size
Length of the original IO size.
Definition: os0file.h:619
bool is_punch_hole_optimisation_disabled() const
Definition: os0file.h:399
void compression_algorithm(Compression::Type type)
Set compression algorithm.
Definition: os0file.h:463
bool is_dblwr() const
Definition: os0file.h:515
Compression compression_algorithm() const
Get the compression algorithm.
Definition: os0file.h:475
bool is_partial_io_warning_disabled() const
Definition: os0file.h:381
void dblwr()
Note that the IO is for double write buffer page write.
Definition: os0file.h:512
void block_size(ulint block_size)
Set the block size for IO.
Definition: os0file.h:438
void clear_encrypted()
Clear all encryption related flags.
Definition: os0file.h:504
void clear_do_not_wake()
Clear the do not wake flag.
Definition: os0file.h:428
bool is_compression_enabled() const
Definition: os0file.h:485
bool is_encrypted() const
Definition: os0file.h:499
ulint block_size() const
Definition: os0file.h:434
void clear_punch_hole()
Clear the punch hole flag.
Definition: os0file.h:431
void disable_partial_io_warnings()
Disable partial read warnings.
Definition: os0file.h:387
const file::Block * get_encrypted_block() const noexcept
Get the encrypted block.
Definition: os0file.h:592
std::string to_string() const
Definition: os0file.h:532
uint32_t get_original_size() const
Returns original size of the IO to make.
Definition: os0file.h:444
bool operator==(const IORequest &rhs) const
Compare two requests.
Definition: os0file.h:459
void disable_compression()
Disable transformations.
Definition: os0file.h:490
bool punch_hole() const
Definition: os0file.h:393
IORequest()
Default constructor.
Definition: os0file.h:329
static bool is_punch_hole_supported()
Definition: os0file.h:518
static bool ignore_missing(int type)
Definition: os0file.h:359
void set_original_size(uint32_t original_size)
Definition: os0file.h:446
uint32_t m_block_size
Definition: os0file.h:598
bool ignore_missing() const
Definition: os0file.h:390
Compression m_compression
Compression algorithm.
Definition: os0file.h:604
void set_punch_hole()
Set the punch hole flag.
Definition: os0file.h:414
IORequest(int type)
Definition: os0file.h:342
Encryption & get_encryption_info() noexcept
Get a reference to the underlying encryption information.
Definition: os0file.h:580
uint32_t m_elen
The length of data in encrypted block.
Definition: os0file.h:613
bool is_write() const
Definition: os0file.h:367
bool validate() const
Definition: os0file.h:407
Encryption encryption_algorithm() const
Get the encryption algorithm.
Definition: os0file.h:494
bool is_row_log() const
Definition: os0file.h:373
void set_encrypted_block(const file::Block *eblock) noexcept
Set the encrypted block to the given value.
Definition: os0file.h:586
bool is_compressed() const
Definition: os0file.h:480
bool is_wake() const
Definition: os0file.h:378
void clear_compressed()
Clear all compression related flags.
Definition: os0file.h:451
void disable_punch_hole_optimisation()
Set the force punch hole flag.
Definition: os0file.h:421
const file::Block * m_eblock
The encrypted block.
Definition: os0file.h:610
int m_type
Request type bit flags.
Definition: os0file.h:601
@ UNSET
Definition: os0file.h:279
@ DBLWR
Request for a doublewrite page IO.
Definition: os0file.h:284
@ DISABLE_PARTIAL_IO_WARNINGS
Disable partial read warnings.
Definition: os0file.h:295
@ IGNORE_MISSING
Ignore failed reads of non-existent pages.
Definition: os0file.h:307
@ DO_NOT_WAKE
Do not to wake i/o-handler threads, but the caller will do the waking explicitly later,...
Definition: os0file.h:304
@ ROW_LOG
Row log used in online DDL.
Definition: os0file.h:320
@ LOG
Log file request.
Definition: os0file.h:292
@ DISABLE_PUNCH_HOLE_OPTIMISATION
We optimise cases where punch hole is not done if the compressed length of the page is the same as th...
Definition: os0file.h:325
@ NO_COMPRESSION
Force raw read, do not try to compress/decompress.
Definition: os0file.h:317
@ WRITE
Definition: os0file.h:281
@ READ
Definition: os0file.h:280
@ DATA_FILE
Enumerations below can be ORed to READ/WRITE above.
Definition: os0file.h:289
@ PUNCH_HOLE
Use punch hole if available, only makes sense if compression algorithm != NONE.
Definition: os0file.h:311
bool is_read() const
Definition: os0file.h:364
bool is_log() const
Definition: os0file.h:370
Encryption m_encryption
Encryption algorithm.
Definition: os0file.h:607
dberr_t
Definition: db0err.h:39
Fido Client Authentication nullptr
Definition: fido_client_plugin.cc:222
struct PSI_file PSI_file
Definition: psi_file_bits.h:55
static void start(mysql_harness::PluginFuncEnv *env)
Definition: http_auth_backend_plugin.cc:177
#define free(A)
Definition: lexyy.cc:915
#define DBUG_EXECUTE_IF(keyword, a1)
Definition: my_dbug.h:171
Common #defines and includes for file and socket I/O.
#define FN_REFLEN_SE
Definition: my_io.h:84
static char * path
Definition: mysqldump.cc:137
std::string str(const mysqlrouter::ConfigGenerator::Options::Endpoint &ep)
Definition: config_generator.cc:1052
Definition: buf0block_hint.cc:30
constexpr value_type read_only
Definition: classic_protocol_constants.h:213
const std::string FILE("FILE")
std::string file_name(Log_file_id file_id)
Provides name of the log file with the given file id, e.g.
Definition: log0pre_8_0_30.cc:94
static mysql_service_status_t flush(reference_caching_cache cache) noexcept
Definition: component.cc:122
mode
Definition: file_handle.h:60
constexpr size_t INNODB_CACHE_LINE_SIZE
CPU cache line size.
Definition: ut0cpu_cache.h:41
std::basic_ostringstream< char, std::char_traits< char >, ut::allocator< char > > ostringstream
Specialization of basic_ostringstream which uses ut::allocator.
Definition: ut0new.h:2870
static int exists(node_address *name, node_list const *nodes, u_int with_uid)
Definition: node_list.cc:106
Macros for using atomics.
Page encryption infrastructure.
static const ulint OS_FILE_READ_ONLY
Definition: os0file.h:216
void os_aio_simulated_wake_handler_threads()
Wakes up simulated aio i/o-handler threads if they have something to do.
Definition: os0file.cc:6727
bool os_file_status(const char *path, bool *exists, os_file_type_t *type)
Check the existence and type of a given path.
Definition: os0file.cc:5700
constexpr uint32_t OS_FILE_MAX_PATH
Definition: os0file.h:695
os_file_create_t
Options for os_file_create_func.
Definition: os0file.h:196
@ OS_FILE_ON_ERROR_SILENT
don't print diagnostic messages to the log unless it is a fatal error, this flag is only used if ON_E...
Definition: os0file.h:210
@ OS_FILE_CREATE
to create new file (if exists, error)
Definition: os0file.h:199
@ OS_FILE_ON_ERROR_NO_EXIT
Flags that can be combined with the above values.
Definition: os0file.h:209
@ OS_FILE_OPEN_RETRY
open with retry
Definition: os0file.h:204
@ OS_FILE_CREATE_PATH
to create the directories
Definition: os0file.h:203
@ OS_FILE_OPEN
to open an existing file (if doesn't exist, error)
Definition: os0file.h:197
@ OS_FILE_OPEN_RAW
to open a raw device or disk partition
Definition: os0file.h:201
static const ulint OS_AIO_N_PENDING_IOS_PER_THREAD
Win NT does not allow more than 64.
Definition: os0file.h:635
static bool pfs_os_file_rename_func(mysql_pfs_key_t key, const char *oldpath, const char *newpath, ut::Location src_location)
NOTE! Please use the corresponding macro os_file_rename(), not directly this function!...
bool os_file_scan_directory(const char *path, os_dir_cbk_t scan_cbk, bool is_drop)
This function scans the contents of a directory and invokes the callback for each entry.
Definition: os0file.cc:3064
ulint os_n_file_reads
Definition: os0file.cc:806
bool os_is_o_direct_supported()
Determine if O_DIRECT is supported.
Definition: os0file.cc:133
static const ulint OS_BUFFERED_FILE
Definition: os0file.h:234
void os_free_block(file::Block *block) noexcept
Free a page after sync IO.
Definition: os0file.cc:1010
dberr_t os_file_create_subdirs_if_needed(const char *path)
Create all missing subdirectories along the given path.
Definition: os0file.cc:1846
bool os_file_create_directory(const char *pathname, bool fail_if_exists)
This function attempts to create a directory named pathname.
Definition: os0file.cc:3041
static bool pfs_os_file_flush_func(pfs_os_file_t file, ut::Location src_location)
NOTE! Please use the corresponding macro os_file_flush(), not directly this function!...
bool os_aio_init(ulint n_readers, ulint n_writers)
Initializes the asynchronous io system.
Definition: os0file.cc:6347
static const ulint OS_FILE_AIO_INTERRUPTED
Definition: os0file.h:258
os_file_type_t
Definition: os0file.h:661
@ OS_FILE_TYPE_BLOCK
Block device.
Definition: os0file.h:687
@ OS_FILE_PERMISSION_ERROR
stat() failed with EACCESS
Definition: os0file.h:669
@ OS_FILE_TYPE_MISSING
File doesn't exist.
Definition: os0file.h:672
@ OS_FILE_TYPE_NAME_TOO_LONG
stat() failed, with ENAMETOOLONG
Definition: os0file.h:666
@ OS_FILE_TYPE_UNKNOWN
File exists but type is unknown.
Definition: os0file.h:675
@ OS_FILE_TYPE_DIR
Directory.
Definition: os0file.h:681
@ OS_FILE_TYPE_FAILED
Get status failed.
Definition: os0file.h:663
@ OS_FILE_TYPE_LINK
Symbolic link.
Definition: os0file.h:684
@ OS_FILE_TYPE_FILE
Ordinary file.
Definition: os0file.h:678
dberr_t os_file_read_func(IORequest &type, const char *file_name, os_file_t file, void *buf, os_offset_t offset, ulint n)
NOTE! Use the corresponding macro os_file_read_first_page(), not directly this function!...
Definition: os0file.cc:5497
AIO_mode
Modes for aio operations.
Definition: os0file.h:638
@ SYNC
Asynchronous i/o where the calling thread will itself wait for the i/o to complete,...
@ IBUF
Asynchronous i/o for ibuf pages or ibuf bitmap pages.
static const ulint OS_FILE_NORMAL
Definition: os0file.h:224
ulint os_n_fsyncs
Definition: os0file.cc:809
mysql_pfs_key_t innodb_data_file_key
mysql_pfs_key_t innodb_dblwr_file_key
byte * os_file_compress_page(Compression compression, ulint block_size, byte *src, ulint src_len, byte *dst, ulint *dst_len)
Compress a data page.
Definition: os0file.cc:1335
os_fd_t os_file_t
File handle.
Definition: os0file.h:150
bool os_file_close_func(os_file_t file)
NOTE! Use the corresponding macro os_file_close(), not directly this function! Closes a file handle.
Definition: os0file.cc:3402
static const ulint OS_FILE_AIO
Definition: os0file.h:223
void os_file_read_string(FILE *file, char *str, ulint size)
Rewind file to its start, read at most size - 1 bytes from it to str, and NUL-terminate str.
Definition: os0file.cc:1636
static const ulint OS_DATA_FILE
Types for file create.
Definition: os0file.h:228
constexpr uint32_t OS_FILE_LOG_BLOCK_SIZE
The next value should be smaller or equal to the smallest sector size used on any disk.
Definition: os0file.h:193
static bool pfs_os_file_delete_func(mysql_pfs_key_t key, const char *name, ut::Location src_location)
NOTE! Please use the corresponding macro os_file_delete(), not directly this function!...
void os_aio_free()
Frees the asynchronous io system.
Definition: os0file.cc:6369
mysql_pfs_key_t innodb_log_file_key
bool os_file_set_size(const char *name, pfs_os_file_t file, os_offset_t offset, os_offset_t size, bool flush)
Write the specified number of zeros to a file from specific offset.
Definition: os0file.cc:5346
static const ulint OS_FILE_ERROR_NOT_SPECIFIED
Definition: os0file.h:256
std::function< void(const char *path, const char *name)> os_dir_cbk_t
Callback function type to be implemented by caller.
Definition: os0file.h:739
static const ulint OS_LOG_FILE
Definition: os0file.h:229
std::atomic< ulint > os_n_pending_reads
Number of pending read operations.
Definition: os0file.cc:817
static constexpr os_fd_t OS_FD_CLOSED
Definition: os0file.h:114
bool os_is_sparse_file_supported(pfs_os_file_t fh)
Check if the file system supports sparse files.
Definition: os0file.cc:5734
dberr_t os_file_read_no_error_handling_func(IORequest &type, const char *file_name, os_file_t file, void *buf, os_offset_t offset, ulint n, ulint *o)
NOTE! Use the corresponding macro os_file_read_no_error_handling(), not directly this function!...
Definition: os0file.cc:5662
pfs_os_file_t os_file_create_func(const char *name, ulint create_mode, ulint purpose, ulint type, bool read_only, bool *success)
NOTE! Use the corresponding macro os_file_create(), not directly this function! Opens an existing fil...
Definition: os0file.cc:3098
dberr_t os_file_punch_hole(os_file_t fh, os_offset_t off, os_offset_t len)
Free storage space associated with a section of the file.
Definition: os0file.cc:5721
int os_fd_t
Raw file handle.
Definition: os0file.h:112
void os_create_block_cache()
Creates and initializes block_cache.
Definition: os0file.cc:6305
static bool pfs_os_file_delete_if_exists_func(mysql_pfs_key_t key, const char *name, bool *exist, ut::Location src_location)
NOTE! Please use the corresponding macro os_file_delete_if_exists(), not directly this function!...
bool os_file_seek(const char *pathname, os_file_t file, os_offset_t offset)
Set read/write position of a file handle to specific offset.
Definition: os0file.cc:5460
mysql_pfs_key_t innodb_arch_file_key
static const ulint OS_FILE_PATH_ERROR
Definition: os0file.h:250
void os_aio_wait_until_no_pending_writes()
Waits until there are no pending writes in os_aio_write_array.
Definition: os0file.cc:6423
static const ulint OS_DBLWR_FILE
Doublewrite files.
Definition: os0file.h:240
static dberr_t pfs_os_file_read_no_error_handling_int_fd_func(IORequest &type, const char *file_name, int file, void *buf, os_offset_t offset, ulint n, ulint *o, ut::Location src_location)
NOTE! Please use the corresponding macro os_file_read_no_error_handling_int_fd(), not directly this f...
bool os_file_set_size_fast(const char *name, pfs_os_file_t file, os_offset_t offset, os_offset_t size, bool flush)
Allocate a block to file using fallocate from the given offset if fallocate is supported.
Definition: os0file.cc:5314
static const ulint OS_FILE_NOT_FOUND
Error codes from os_file_get_last_error.
Definition: os0file.h:247
static dberr_t pfs_os_file_write_func(IORequest &type, const char *name, pfs_os_file_t file, const void *buf, os_offset_t offset, ulint n, ut::Location src_location)
NOTE! Please use the corresponding macro os_file_write(), not directly this function!...
void os_file_set_umask(mode_t umask)
Set the global file create umask.
Definition: os0file.cc:7732
dberr_t os_aio_func(IORequest &type, AIO_mode aio_mode, const char *name, pfs_os_file_t file, void *buf, os_offset_t offset, ulint n, bool read_only, fil_node_t *m1, void *m2)
NOTE! Use the corresponding macro os_aio(), not directly this function! Requests an asynchronous i/o ...
Definition: os0file.cc:6902
static const ulint OS_FILE_SHARING_VIOLATION
Definition: os0file.h:255
std::atomic< ulint > os_n_pending_writes
Number of pending write operations.
Definition: os0file.cc:815
static const ulint OS_FILE_READ_ALLOW_DELETE
Used by MySQLBackup.
Definition: os0file.h:220
unsigned long long os_fsync_threshold
Definition: os0file.cc:107
void os_aio_wake_all_threads_at_shutdown()
Wakes up all async i/o threads so that they know to exit themselves in shutdown.
Definition: os0file.cc:6393
constexpr mode_t os_innodb_umask_default
A magic constant for the umask parameter that indicates caller wants the os_innodb_umask value to be ...
Definition: os0file.h:1760
static pfs_os_file_t pfs_os_file_create_simple_no_error_handling_func(mysql_pfs_key_t key, const char *name, ulint create_mode, ulint access_type, bool read_only, mode_t umask, bool *success, ut::Location src_location)
NOTE! Please use the corresponding macro os_file_create_simple_no_error_handling(),...
static pfs_os_file_t pfs_os_file_create_func(mysql_pfs_key_t key, const char *name, ulint create_mode, ulint purpose, ulint type, bool read_only, bool *success, ut::Location src_location)
NOTE! Please use the corresponding macro os_file_create(), not directly this function!...
static const ulint OS_FILE_NAME_TOO_LONG
Definition: os0file.h:261
pfs_os_file_t os_file_create_simple_no_error_handling_func(const char *name, ulint create_mode, ulint access_type, bool read_only, mode_t umask, bool *success)
NOTE! Use the corresponding macro os_file_create_simple_no_error_handling(), not directly this functi...
Definition: os0file.cc:3248
mysql_pfs_key_t innodb_tablespace_open_file_key
static dberr_t pfs_os_file_read_func(IORequest &type, const char *file_name, pfs_os_file_t file, void *buf, os_offset_t offset, ulint n, ut::Location src_location)
NOTE! Please use the corresponding macro os_file_read(), not directly this function!...
dberr_t os_file_write_retry(IORequest &type, const char *name, pfs_os_file_t file, const void *buf, os_offset_t offset, ulint n)
This is a wrapper function for the os_file_write() function call.
Definition: os0file.cc:7760
static const ulint OS_FILE_ERROR_MAX
Definition: os0file.h:264
static dberr_t pfs_os_aio_func(IORequest &type, AIO_mode mode, const char *name, pfs_os_file_t file, void *buf, os_offset_t offset, ulint n, bool read_only, fil_node_t *m1, void *m2, ut::Location location)
NOTE! Please use the corresponding macro os_aio(), not directly this function! Performance schema wra...
bool os_file_set_eof(FILE *file)
Truncates a file at its current position.
Definition: os0file.cc:3557
static dberr_t pfs_os_file_copy_func(pfs_os_file_t src, os_offset_t src_offset, pfs_os_file_t dest, os_offset_t dest_offset, uint size, ut::Location src_location)
copy data from one file to another file.
static dberr_t pfs_os_file_write_int_fd_func(IORequest &type, const char *name, int file, const void *buf, os_offset_t offset, ulint n, ut::Location src_location)
NOTE! Please use the corresponding macro os_file_write(), not directly this function!...
bool os_file_exists(const char *path)
Check the existence and usefulness of a given path.
Definition: os0file.cc:5708
bool os_file_flush_func(os_file_t file)
NOTE! Use the corresponding macro os_file_flush(), not directly this function! Flushes the write buff...
Definition: os0file.cc:3004
void os_file_set_nocache(int fd, const char *file_name, const char *operation_name)
Tries to disable OS caching on an opened file descriptor.
Definition: os0file.cc:5268
static const ulint OS_FILE_ALREADY_EXISTS
Definition: os0file.h:249
static const ulint OS_FILE_DISK_FULL
Definition: os0file.h:248
bool os_file_rename_func(const char *oldpath, const char *newpath)
NOTE! Use the corresponding macro os_file_rename(), not directly this function! Renames a file (can a...
Definition: os0file.cc:3371
void os_aio_print(FILE *file)
Prints info of the aio arrays.
Definition: os0file.cc:7592
static bool pfs_os_file_close_func(pfs_os_file_t file, ut::Location src_location)
NOTE! Please use the corresponding macro os_file_close(), not directly this function!...
static const ulint OS_CLONE_LOG_FILE
Definition: os0file.h:237
static const ulint OS_REDO_LOG_ARCHIVE_FILE
Redo log archive file.
Definition: os0file.h:243
bool os_has_said_disk_full
Definition: os0file.cc:820
byte * os_block_get_frame(const file::Block *block) noexcept
Get the sector aligned frame pointer.
Definition: os0file.cc:963
ulint os_n_file_writes
Definition: os0file.cc:808
dberr_t os_aio_handler(ulint segment, fil_node_t **m1, void **m2, IORequest *request)
Waits for an AIO operation to complete.
Definition: os0file.cc:5871
dberr_t os_file_read_first_page_func(IORequest &type, const char *file_name, os_file_t file, void *buf, ulint n)
NOTE! Use the corresponding macro os_file_read_first_page(), not directly this function!...
Definition: os0file.cc:5515
dberr_t os_file_get_status(const char *path, os_file_stat_t *stat_info, bool check_rw_perm, bool read_only)
This function returns information about the specified file.
Definition: os0file.cc:5768
mysql_pfs_key_t innodb_temp_file_key
bool os_aio_all_slots_free()
Checks that all slots in the system have been freed, that is, there are no pending io operations.
Definition: os0file.cc:7684
bool os_file_delete_func(const char *name)
Deletes a file.
Definition: os0file.cc:3350
static const ulint OS_FILE_READ_WRITE
Definition: os0file.h:217
static const ulint OS_FILE_ACCESS_VIOLATION
Definition: os0file.h:260
dberr_t os_get_free_space(const char *path, uint64_t &free_space)
Get available free space on disk.
Definition: os0file.cc:5749
file::Block * os_file_encrypt_page(const IORequest &type, void *&buf, ulint n)
Encrypt a page content when write it to disk.
Definition: os0file.cc:1959
void os_aio_refresh_stats()
Refreshes the statistics used to print per-second averages.
Definition: os0file.cc:7665
os_file_size_t os_file_get_size(const char *filename)
Gets a file size.
Definition: os0file.cc:3426
static const ulint OS_FILE_AIO_RESOURCES_RESERVED
wait for OS aio resources to become available again
Definition: os0file.h:253
static const ulint OS_CLONE_DATA_FILE
Definition: os0file.h:236
ulint os_file_get_last_error(bool report_all_errors)
Retrieves the last error number if an error occurs in a file io function.
Definition: os0file.cc:5147
static const ulint OS_FILE_OPERATION_ABORTED
Definition: os0file.h:259
void os_aio_simulated_put_read_threads_to_sleep()
This function can be called if one wants to post a batch of reads and prefers an i/o-handler thread t...
Definition: os0file.cc:3575
file::Block * os_alloc_block() noexcept
Allocate a page for sync IO.
Definition: os0file.cc:967
bool os_file_truncate(const char *pathname, pfs_os_file_t file, os_offset_t size)
Truncates a file to a specified size in bytes.
Definition: os0file.cc:5438
dberr_t os_file_decompress_page(bool dblwr_read, byte *src, byte *dst, ulint dst_len)
Decompress the page data contents.
Definition: file.cc:277
os_fd_t innobase_mysql_tmpfile(const char *path)
Creates a temporary file in the location specified by the parameter path.
Definition: ha_innodb.cc:2481
dberr_t os_file_write_zeros(pfs_os_file_t file, const char *name, ulint page_size, os_offset_t start, ulint len)
Fill the pages with NULs.
Definition: os0file.cc:5796
static const ulint OS_FILE_INSUFFICIENT_RESOURCE
Definition: os0file.h:257
static constexpr os_fd_t OS_FILE_CLOSED
Definition: os0file.h:152
FILE * os_file_create_tmpfile()
Create a temporary file.
Definition: os0file.cc:1609
bool os_file_check_mode(const char *name, bool read_only)
Check if a file can be opened in read-write mode.
Definition: os0file.cc:5829
static dberr_t pfs_os_file_read_first_page_func(IORequest &type, const char *file_name, pfs_os_file_t file, void *buf, ulint n, ut::Location src_location)
NOTE! Please use the corresponding macro os_file_read_first_page(), not directly this function!...
void os_aio_print_pending_io(FILE *file)
Prints all pending IO.
Definition: os0file.cc:7726
mysql_pfs_key_t innodb_clone_file_key
dberr_t os_file_copy_func(os_file_t src_file, os_offset_t src_offset, os_file_t dest_file, os_offset_t dest_offset, uint size)
Copy data from one file to another file.
Definition: os0file.cc:5651
char * innobase_mysql_tmpdir()
return any of the tmpdir path
Definition: ha_innodb.cc:2479
uint64_t os_offset_t
File offset in bytes.
Definition: os0file.h:84
static const ulint OS_FILE_TOO_MANY_OPENED
Definition: os0file.h:262
dberr_t os_file_write_func(IORequest &type, const char *name, os_file_t file, const void *buf, os_offset_t offset, ulint n)
NOTE! Use the corresponding macro os_file_write(), not directly this function! Requests a synchronous...
Definition: os0file.cc:5683
void os_aio_start_threads()
Starts one thread for each segment created in os_aio_init.
Definition: os0file.cc:6366
ulint os_file_original_page_size(const byte *buf)
If it is a compressed page return the original page data + footer size.
Definition: os0file.cc:1171
ulint os_file_compressed_page_size(const byte *buf)
If it is a compressed page return the compressed page data + footer size.
Definition: os0file.cc:1155
static dberr_t pfs_os_file_read_no_error_handling_func(IORequest &type, const char *file_name, pfs_os_file_t file, void *buf, os_offset_t offset, ulint n, ulint *o, ut::Location src_location)
NOTE! Please use the corresponding macro os_file_read_no_error_handling(), not directly this function...
bool os_file_delete_if_exists_func(const char *name, bool *exist)
Deletes a file if it exists.
Definition: os0file.cc:3314
The interface to the operating system file io.
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
NOTE: The functions in this file should only use functions from other files in library.
Compression algorithm.
Definition: file.h:51
Type
Algorithm types supported.
Definition: file.h:53
@ NONE
No compression.
Definition: file.h:59
Type m_type
Compression type.
Definition: file.h:197
std::string to_string() const
Definition: file.h:105
Directory names for the depth first directory scan.
Definition: os0file.h:1851
Entry(const Path &path, size_t depth)
Constructor.
Definition: os0file.h:1856
Path m_path
Path to the directory.
Definition: os0file.h:1859
size_t m_depth
Relative depth of m_path.
Definition: os0file.h:1862
File node of a tablespace or the log data space.
Definition: fil0fil.h:155
Blocks for doing IO, used in the transparent compression and encryption code.
Definition: os0file.h:89
Block() noexcept
Default constructor.
Definition: os0file.h:91
static void free(file::Block *obj) noexcept
Free the given memory block.
Definition: os0file.h:1891
byte * m_ptr
Pointer to the memory block.
Definition: os0file.h:98
size_t m_size
Size of the data in memory block.
Definition: os0file.h:101
byte pad[ut::INNODB_CACHE_LINE_SIZE]
This padding is needed to avoid false sharing.
Definition: os0file.h:106
std::atomic< bool > m_in_use
Definition: os0file.h:107
Define for performance schema registration key.
Definition: sync0sync.h:51
Sparse file size information.
Definition: os0file.h:625
os_offset_t m_alloc_size
If it is a sparse file then this is the number of bytes actually allocated for the file.
Definition: os0file.h:631
os_offset_t m_total_size
Total size of file in bytes.
Definition: os0file.h:627
Struct used in fetching information of a file in a directory.
Definition: os0file.h:700
uint32_t block_size
Block size to use for IO in bytes.
Definition: os0file.h:706
time_t ctime
creation time
Definition: os0file.h:708
char name[OS_FILE_MAX_PATH]
path to a file
Definition: os0file.h:701
time_t atime
access time
Definition: os0file.h:710
bool rw_perm
true if can be opened in read-write mode.
Definition: os0file.h:711
os_file_type_t type
file type
Definition: os0file.h:702
os_offset_t size
file size in bytes
Definition: os0file.h:703
os_offset_t alloc_size
Allocated size for sparse files in bytes.
Definition: os0file.h:704
time_t mtime
modification time
Definition: os0file.h:709
Common file descriptor for file IO instrumentation with PFS on windows and other platforms.
Definition: os0file.h:173
struct PSI_file * m_psi
Definition: os0file.h:175
os_file_t m_file
Definition: os0file.h:183
Include file for Sun RPC to compile out of the box.
unsigned int uint
Definition: uca9-dump.cc:75
static const size_t UNIV_SECTOR_SIZE
Definition: univ.i:639
unsigned long int ulint
Definition: univ.i:406
#define ut_ad(EXPR)
Debug assertion.
Definition: ut0dbg.h:69
#define HANDLE
Definition: violite.h:159
int n
Definition: xcom_base.cc:509