13 Commits

Author SHA1 Message Date
Patrick Wade
466c36d605 Added support for:
MySQL 64-bit   8.0.30

MySQL 64-bit   5.7.39, 5.7.38
MySQL 32-bit   5.7.39, 5.7.38

MariaDB 64-bit  10.7.5, 10.7.4, 10.7.3, 10.5.16, 10.2.44
MariaDB 32-bit  10.2.44
2022-10-11 19:36:01 +01:00
Patrick Wade
4c91fb3692 * Added support for:
MySQL 64-bit   8.0.28, 8.0.27, 8.0.26

MySQL 64-bit   5.7.37
MySQL 32-bit   5.7.37

MariaDB 64-bit  10.6.7, 10.6.5, 10.6.4, 10.6.3

MariaDB 64-bit  10.5.15, 10.4.24, 10.2.43
MariaDB 32-bit  10.2.43
2022-07-26 17:34:24 +01:00
pwrpw
1f19442b6e access check 2022-06-16 12:35:04 +01:00
Patrick Wade
bcde7e83e6 Added support for:
Percona 64-bit  5.7.36-39

MySQL 64-bit   5.7.36
MySQL 32-bit   5.7.36

MariaDB 64-bit  10.5.13, 10.4.22, 10.2.41
MariaDB 32-bit  10.2.41
2022-03-15 16:05:37 +00:00
Barrett, William
29a12f3441 Adding support for:
MySQL      64-bit    5.7.35
MariaDB   64-bit    10.5.12, 10.4.21, 10.2.40
Percona    64-bit    5.7.35-38
MySQL      32-bit    5.7.35
MariaDB   32-bit    10.2.40

Updating THIRDPARTY.txt
2021-12-07 13:30:09 +00:00
Patrick Wade
10c4255ebe Added support for:
Percona 64-bit  5.7.34-37
MySQL 64-bit   8.0.25, 8.0.24, 5.7.34
MariaDB 64-bit  10.2.39, 10.2.38, 10.5.11, 10.5.10, 10.4.20, 10.4.19, 10.4.18, 10.4.17, 10.4.16, 10.4.15, 10.4.14, 10.4.13, 10.4.12, 10.4.11, 10.4.10, 10.4.8, 10.4.7, 10.4.6

MySQL 32-bit   5.7.34
MariaDB 32-bit  10.2.39, 10.2.38
2021-09-14 15:47:30 +01:00
William Barrett
e2b3d52fc7 Update CODEOWNERS 2021-08-20 15:15:48 +01:00
William Barrett
0bf751633a Create CODEOWNERS 2021-08-20 10:25:27 +01:00
William Barrett
85557b0f03 Updating README to point to LICENSE 2021-08-03 12:37:45 +01:00
William Barrett
974a169127 Create LICENSE.md 2021-08-03 12:36:30 +01:00
William Barrett
e87e8ec29d Update README.md
Updating README.md to point to CONTRIBUTING.md
2021-07-20 18:28:23 +01:00
William Barrett
a48d47210d Create CONTRIBUTING.md 2021-07-20 18:27:11 +01:00
William Barrett
9514cd999b Update README.md
Minor changes to README
2021-06-25 11:06:21 +01:00
15 changed files with 1609 additions and 141 deletions

1
.github/CODEOWNERS vendored Normal file
View File

@@ -0,0 +1 @@
@awalicka @pwrpw @wpdbarrett

View File

@@ -22,14 +22,13 @@ include:
Examples of unacceptable behavior by participants include:
* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* The use of sexualized language or imagery and unwelcome sexual attention or advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting
professional setting
## Our Responsibilities
@@ -55,8 +54,10 @@ further defined and clarified by project maintainers.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at opensource@mcafee.com. All
complaints will be reviewed and investigated and will result in a response that
reported by contacting the project team via **Github Issues**
All complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Further details of specific enforcement policies may be posted separately.

63
CONTRIBUTING.md Normal file
View File

@@ -0,0 +1,63 @@
# Contributing to mysql-audit
Welcome, and thank you for your interest in contributing to mysql-audit!
## Asking Questions
Have a question? </br>
We accept questions as issues on GitHub.</br>
https://github.com/mcafee/mysql-audit/issues
## Providing Feedback
Have some feedback? We would love to hear it!</br>
Open an issue and let us know what you think.</br>
https://github.com/mcafee/mysql-audit/issues
## Reporting Issues
Found a bug?
Please feel free to report to: https://github.com/mcafee/mysql-audit/issues
### Look For an Existing Issue
Before you create a new issue, please do a search in [open issues](https://github.com/mcafee/mysql-audit/issues) to see if the issue or feature request has already been filed.
If you find your issue already exists, make relevant comments and add your [reaction](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments). Use a reaction in place of a "+1" comment:
* 👍 - upvote
* 👎 - downvote
If you cannot find an existing issue that describes your bug or feature, create a new issue using the guidelines below.
### Writing Good Bug Reports and Feature Requests
Be sure to include a **title and clear description** with as much information as possible.
If reporting a bug, please describe the problem verbosely. Try to see if it reproduces and
include a detailed description on how to reproduce.
Make sure to include your MySQL Server version and Audit Plugin version.
To print MySQL Server version: log into MySQL and execute the command:
status
Please include with the bug the MySQL error log.
Log file location can be queried by running the following command:
show global variables like 'log_error'
## Contributing
* Open a new GitHub pull request with a patch - name the patch something along the lines of `{contributor-name}-short-description`
* Ensure the pull request description clearly describes the problem/fix and solution. Include the relevant issue number if applicable.
* Follow the coding and documentation conventions in the existing project. Pull requests that simply reformat or restructure the content will not be accepted.
# Thank You!
Your contributions to open source, large or small, make great projects like this possible. Thank you for taking the time to contribute.

13
LICENSE.md Normal file
View File

@@ -0,0 +1,13 @@
# License
Copyright (C) 2021 Musarubra US LLC.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU
General Public License as published by the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
See COPYING file for a copy of the GPL Version 2 license.
<sup>*</sup> Other trademarks and brands may be claimed as the property of others.

View File

@@ -1,49 +1,37 @@
AUDIT Plugin for MySQL<sup>*</sup>
===================
# AUDIT Plugin for MySQL<sup>*</sup>
A MySQL plugin from McAfee providing audit capabilities for MySQL,
## Overview
A MySQL plugin from Trellix providing audit capabilities for MySQL,
designed with an emphasis on security and audit requirements. The plugin may be used
as a standalone audit solution or configured to feed data to external monitoring tools.
Installation and Configuration
------------------------------
## Documentation
Please check out our wiki on GitHub. <br/>
https://github.com/mcafee/mysql-audit/wiki
Official McAfee plugin binary releases can be downloaded from the Releases page on GitHub: <br/>
## Installation / Configuration
Official Trellix plugin binary releases can be downloaded from the Releases page on GitHub: <br/>
https://github.com/mcafee/mysql-audit/releases
Please check out our wiki on GitHub for detailed installation and configuration instructions: <br/>
https://github.com/mcafee/mysql-audit/wiki
Issues
------------------------------
## Feedback / Bug Reporting
Found a bug? Got a feature request or question?
Please feel free to report to: https://github.com/mcafee/mysql-audit/issues
If reporting a bug, please describe the problem verbosely. Try to see if it reproduces and
include a detailed description on how to reproduce.
Make sure to include your MySQL Server version and Audit Plugin version.
To print MySQL Server version: log into MySQL and execute the command:
status
Please include with the bug the MySQL error log.
Log file location can be queried by running the following command:
show global variables like 'log_error'
Check out the [CONTRIBUTING.md](https://github.com/mcafee/mysql-audit/blob/master/CONTRIBUTING.md) to see how you can get involved.
Source Code
-------------------------------
## Source Code
Source code is available at: https://github.com/mcafee/mysql-audit
License
-------------------------------
Copyright (C) 2011-2021 McAfee, LLC.
## License
Copyright (C) 2011-2022 Musarubra US LLC.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU
General Public License as published by the Free Software Foundation; version 2 of the License.

File diff suppressed because it is too large Load Diff

View File

@@ -96,5 +96,5 @@ http://dev.mysql.com/doc/refman/5.1/en/source-configuration-options.html
10. cd ../..
11. chmod +x bootstrap.sh
12. ./bootstrap.sh
13. CXX='gcc -static-libgcc' CC='gcc -static-libgcc' MYSQL_AUDIT_PLUGIN_VERSION=1.1.7 MYSQL_AUDIT_PLUGIN_REVISION=`svn info|grep ^Revision|awk -F ": " '{print $2}'` ./configure --enable-debug=no --with-mysql=mariadb-10.2.10 --with-mysql-libservices=mariadb-10.2.10/libservices/libmysqlservices.a
13. CXX='gcc -static-libgcc' CC='gcc -static-libgcc' MYSQL_AUDIT_PLUGIN_VERSION=1.1.13 MYSQL_AUDIT_PLUGIN_REVISION=`svn info|grep ^Revision|awk -F ": " '{print $2}'` ./configure --enable-debug=no --with-mysql=mariadb-10.2.10 --with-mysql-libservices=mariadb-10.2.10/libservices/libmysqlservices.a
14. gmake <======== This will create the plugin "libaudit_plugin.so"

View File

@@ -16,10 +16,19 @@ AC_DEFUN([CHECK_DEBUG], [
AC_MSG_CHECKING(whether to enable debugging)
if test "x$enable_debug" = "xyes"; then
CPPFLAGS="$CPPFLAGS -g -D_DEBUG"
# Note that SAFE_MUTEX is needed in debug plugin compilation, in order that
# it aligns with MySQL at debug level. Specifically, in the MySQL source file
# "include/thr_mutex.h", we need both the my_mutex_init() function and the
# my_mutex_lock() function to use the same paradigm (i.e. both using
# "safe_mutex_*" calls ... or both using "native_mutex_*" calls ... but
# definitely NOT a mix of 'safe' and 'native').
CPPFLAGS="$CPPFLAGS -g -D_DEBUG -DSAFE_MUTEX"
AC_MSG_RESULT(yes)
else
CPPFLAGS="$CPPFLAGS -g -O2 -DDBUG_OFF"
# We need to specify -DDBUG_OFF and -DNDEBUG in order to compile the plugin
# without MySQL debug components. Later versions of MySQL ignore the DBUG_OFF
# flag, but continue to respect the NDEBUG flag.
CPPFLAGS="$CPPFLAGS -g -O2 -DDBUG_OFF -DNDEBUG"
AC_MSG_RESULT(no)
fi

View File

@@ -17,7 +17,7 @@
#include <pcre.h>
#define AUDIT_LOG_PREFIX "McAfee Audit Plugin:"
#define AUDIT_LOG_PREFIX "Trellix Audit Plugin:"
#define AUDIT_PROTOCOL_VERSION "1.0"
#if !defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 50709
@@ -255,7 +255,7 @@ public:
#if !defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID < 50709
return thd->db;
#elif defined(MARIADB_BASE_VERSION)
#if MYSQL_VERSION_ID >= 100504
#if MYSQL_VERSION_ID >= 100307
return thd->db.str;
#else
return thd->db;
@@ -578,7 +578,7 @@ static inline const CHARSET_INFO * pfs_connect_attrs_cs(const void * pfs)
// and it may return an invalid value for view_db
static inline const char *table_get_db_name(TABLE_LIST *table)
{
#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 100504
#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 100307
return table->db.str;
#else
return table->db;
@@ -587,7 +587,7 @@ static inline const CHARSET_INFO * pfs_connect_attrs_cs(const void * pfs)
static inline const char *table_get_name(TABLE_LIST *table)
{
#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 100504
#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 100307
return table->table_name.str;
#else
return table->table_name;

View File

@@ -31,8 +31,8 @@
#include <mysql/plugin_audit.h>
#endif
#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 100504
// From MariaDB 10.5 we include macro definitions for items like MY_GNUC_PREREQ
#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 100307
// From MariaDB 10.3 we include macro definitions for items like MY_GNUC_PREREQ
#include <my_compiler.h>
#include <my_global.h>
#endif
@@ -166,7 +166,7 @@ static inline bool vio_socket_connect(MYSQL_VIO vio, struct sockaddr *addr, sock
#else
/*********************************************/
/* */
/* resolve the symbols manualy to permit */
/* resolve the symbols manually to permit */
/* loading of the plugin in their absence */
/* */
/*********************************************/
@@ -181,6 +181,7 @@ static inline bool vio_socket_connect(MYSQL_VIO vio, struct sockaddr *addr, sock
if (_vio_socket_connect_80020) return _vio_socket_connect_80020(vio, addr, len, false, timeout, nullptr);
return true;
}
static inline bool init_vio_socket_connect()
{
void* handle = dlopen(NULL, RTLD_LAZY);
@@ -192,6 +193,27 @@ static inline bool init_vio_socket_connect()
dlclose(handle);
return _vio_socket_connect || _vio_socket_connect_80016 || _vio_socket_connect_80020;
}
extern const std::string & (*_str_session_80026)(int cmd);
extern const LEX_STRING *_command_name;
static inline const char* str_session(int cmd)
{
if (_str_session_80026) return _str_session_80026(cmd).c_str();
if (_command_name) return _command_name[cmd].str;
return "";
}
static inline bool init_str_session()
{
void* handle = dlopen(NULL, RTLD_LAZY);
if (!handle)
return false;
_command_name = (decltype(_command_name))dlsym(handle, "command_name");
_str_session_80026 = (decltype(_str_session_80026))dlsym(handle, "_ZN13Command_names11str_sessionE19enum_server_command");
dlclose(handle);
return _command_name || _str_session_80026;
}
#endif
#endif
@@ -238,7 +260,7 @@ static inline const ::PFS_thread* get_current_thread()
static inline bool init()
{
#if !defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 80000
return init_vio_socket_connect();
return init_vio_socket_connect() && init_str_session();
#elif defined(HAVE_SESS_CONNECT_ATTRS) && defined(MARIADB_BASE_VERSION)
return init_PFS_thread_get_current_thread();
#else

View File

@@ -59,7 +59,7 @@ fi
# In 5.6.15 and up, 5.7 and mariabdb 10.0.11 and up, mariadb 10.1
# m_session_connect_attrs_cs changed to m_session_connect_attrs_cs_number
if echo $MYVER | grep -P '^(5\.7|8\.|10\.[1-2]|5\.6\.(1[5-9]|[2-9][0-9])|10.0.(1[1-9]|[2-9][0-9]))' > /dev/null
if echo $MYVER | grep -P '^(5\.7|8\.|10\.[1-5]|5\.6\.(1[5-9]|[2-9][0-9])|10.0.(1[1-9]|[2-9][0-9]))' > /dev/null
then
CONNECT_ATTRS_CS=m_session_connect_attrs_cs_number
fi
@@ -111,9 +111,9 @@ else
fi
# Exit status info 5.5, 5.6, 5.7
DA_STATUS="print_offset Diagnostics_area m_status" # 5.5, 5.6, 5.7, mariadb 10.0, 10.1, 10.2
DA_SQL_ERRNO="print_offset Diagnostics_area m_sql_errno" # 5.5, 5.6, mariadb 10.0, 10.1, 10.2
STMT_DA="print_offset THD m_stmt_da" # 5.6, 5.7, mariadb 10.0, 10.1, 10.2
DA_STATUS="print_offset Diagnostics_area m_status" # 5.5, 5.6, 5.7, mariadb 10.0 to 10.5
DA_SQL_ERRNO="print_offset Diagnostics_area m_sql_errno" # 5.5, 5.6, mariadb 10.0 to 10.5
STMT_DA="print_offset THD m_stmt_da" # 5.6, 5.7, mariadb 10.0 to 10.5
if echo $MYVER | grep -P '^(5\.7|8\.0)' > /dev/null
then

View File

@@ -1,7 +1,7 @@
Tue, Jun 27, 2017 10:48:38 AM
Mon, Apr 11, 2022 10:48:38 AM
=============================
By default, the McAfee AUDIT plugin for MySQL* is named "AUDIT" and
By default, the Trellix AUDIT plugin for MySQL* is named "AUDIT" and
that is the name you should use when installing the plugin with the SQL
"INSTALL PLUGIN" command.
@@ -10,10 +10,10 @@ various configuration variables.
In order to avoid conflict with other vendors' auditing plugins whose
names may start with "audit" (such as MySQL's "audit_log" plugin) it
is possible to change the name of the McAfee plugin. The steps are
is possible to change the name of the Trellix plugin. The steps are
as follows:
1. If you're currently using the McAfee plugin, unload it.
1. If you're currently using the Trellix plugin, unload it.
2. Edit the /usr/bin/mysqld_safe shell script (using the correct location
for your system). For MySQL 5.7.9, look for the eval_log_error() function.
@@ -23,9 +23,9 @@ Before the line that says:
add a line like this:
export MCAFEE_AUDIT_PLUGIN_NAME=MCAFEE # use any name you want
export MCAFEE_AUDIT_PLUGIN_NAME=TRELLIX # use any name you want
You can use any name you like, "MCAFEE" is just an example.
You can use any name you like, "TRELLIX" is just an example.
For other MySQL versions, determine where the mysqld daemon is actually
started, and set the environment variable right before that.
@@ -33,16 +33,16 @@ started, and set the environment variable right before that.
3. After restarting MySQL, you will need to load the plugin using the
new name. From the MySQL client:
install plugin MCAFEE soname 'libaudit_plugin.so';
install plugin TRELLIX soname 'libaudit_plugin.so';
and/or from /etc/my.cnf:
[mysqld]
plugin-load=MCAFEE=libaudit_plugin.so
plugin-load=TRELLIX=libaudit_plugin.so
Once you've done that, you must remember that the names of ALL the
configuration variables will start with the lowercase version of the
name you've chosen. For example, "mcafee_json_log_file" instead of
name you've chosen. For example, "trellix_json_log_file" instead of
"audit_json_log_file".
If you previously had various "audit_XXX" variables set in your

View File

@@ -1073,7 +1073,11 @@ ssize_t Audit_json_formatter::event_format(ThdSesData *pThdData, IWriter *writer
const char *query_text = query;
size_t query_len = qlen;
#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 100603
if (strcmp(col_connection->cs_name.str, "utf8") != 0)
#else
if (strcmp(col_connection->csname, "utf8") != 0)
#endif
{
// max UTF-8 bytes per char is 4.
size_t to_amount = (qlen * 4) + 1;

View File

@@ -25,6 +25,12 @@
const ThdOffsets thd_offsets_arr[] =
{
/* +++ PERCONA 64 OFFSETS GO HERE +++ */
//offsets for: /perconarpm/usr/sbin/mysqld (5.7.36-39)
{"5.7.36-39","b7e514d8c2f29ee43540213665d8ff89", 8368, 8432, 3936, 5096, 456, 360, 0, 32, 64, 160, 544, 8564, 4664, 3648, 3656, 3660, 6568, 2088, 8, 7600, 7640, 7624, 14336, 148, 672, 0},
//offsets for: /perconarpm/usr/sbin/mysqld (5.7.35-38)
{"5.7.35-38","b6ef0de6565a1c2e64ee01ca6ac0df8c", 8368, 8432, 3936, 5096, 456, 360, 0, 32, 64, 160, 544, 8564, 4664, 3648, 3656, 3660, 6568, 2088, 8, 7600, 7640, 7624, 14336, 148, 672, 0},
//offsets for: /perconarpm/usr/sbin/mysqld (5.7.34-37)
{"5.7.34-37","c043928340fcb2d5669e99bd7fa7ec2c", 8368, 8432, 3936, 5096, 456, 360, 0, 32, 64, 160, 544, 8564, 4664, 3648, 3656, 3660, 6568, 2088, 8, 7600, 7640, 7624, 14336, 148, 672, 0},
//offsets for: /perconarpm/usr/sbin/mysqld (5.7.33-36)
{"5.7.33-36","732e230fdc4153d8dd2aa0acaf715c6e", 8360, 8424, 3928, 5088, 456, 360, 0, 32, 64, 160, 536, 8556, 4656, 3648, 3656, 3660, 6560, 2088, 8, 7592, 7632, 7616, 14328, 148, 672},
//offsets for: /perconarpm/usr/sbin/mysqld (5.7.32-35)
@@ -69,6 +75,30 @@ const ThdOffsets thd_offsets_arr[] =
const ThdOffsets thd_offsets_arr[] =
{
/* +++ MYSQL 64 OFFSETS GO HERE +++ */
//offsets for: /mysqlrpm/8.0.30/usr/sbin/mysqld (8.0.30)
{"8.0.30","3ddc67dbe6ae09a6bd0ff936341399b0", 9400, 9440, 4936, 6416, 1288, 0, 0, 32, 64, 160, 1376, 9540, 6040, 4248, 4256, 4260, 7696, 1576, 32, 8656, 8696, 8680, 12424, 140, 664, 328},
//offsets for: /mysqlrpm/5.7.39/usr/sbin/mysqld (5.7.39)
{"5.7.39","1ee93feb714d852927435e6f28097ec7", 7832, 7880, 3640, 4800, 456, 360, 0, 32, 64, 160, 544, 7996, 4368, 3656, 3664, 3668, 6080, 2072, 8, 7064, 7104, 7088, 13480, 148, 672, 0},
//offsets for: /mysqlrpm/5.7.38/usr/sbin/mysqld (5.7.38)
{"5.7.38","b96ba6e789ee312daed3d6b901048496", 7832, 7880, 3640, 4800, 456, 360, 0, 32, 64, 160, 544, 7996, 4368, 3648, 3656, 3660, 6080, 2072, 8, 7064, 7104, 7088, 13480, 148, 672, 0},
//offsets for: /mysqlrpm/8.0.26/usr/sbin/mysqld (8.0.26)
{"8.0.26","0ae5395a4978c024e809b744a799cd3a", 8504, 8544, 4048, 5520, 496, 0, 0, 32, 64, 160, 584, 8644, 5144, 4208, 4216, 4220, 6800, 1608, 32, 7760, 7800, 7784, 11528, 140, 664, 328},
//offsets for: /mysqlrpm/8.0.27/usr/sbin/mysqld (8.0.27)
{"8.0.27","fb324bdef2d133735ba69c7223c849c9", 8512, 8552, 4048, 5528, 496, 0, 0, 32, 64, 160, 584, 8652, 5152, 4224, 4232, 4236, 6808, 1608, 32, 7768, 7808, 7792, 11536, 140, 664, 328},
//offsets for: /mysqlrpm/8.0.28/usr/sbin/mysqld (8.0.28)
{"8.0.28","83a37cda5966f156ec4ac742517db37e", 8584, 8624, 4120, 5600, 496, 0, 0, 32, 64, 160, 584, 8724, 5224, 4232, 4240, 4244, 6880, 1608, 32, 7840, 7880, 7864, 11608, 140, 664, 328},
//offsets for: /mysqlrpm/5.7.37/usr/sbin/mysqld (5.7.37)
{"5.7.37","fb0b3075cb05807123b68567607fd325", 7832, 7880, 3640, 4800, 456, 360, 0, 32, 64, 160, 544, 7996, 4368, 3648, 3656, 3660, 6080, 2072, 8, 7064, 7104, 7088, 13480, 148, 672, 0},
//offsets for: /mysqlrpm/5.7.36/usr/sbin/mysqld (5.7.36)
{"5.7.36","a510b439fd43a666e34b5e670bb5da86", 7832, 7880, 3640, 4800, 456, 360, 0, 32, 64, 160, 544, 7996, 4368, 3648, 3656, 3660, 6080, 2072, 8, 7064, 7104, 7088, 13480, 148, 672, 0},
//offsets for: /mysqlrpm/5.7.35/usr/sbin/mysqld (5.7.35)
{"5.7.35","b5e09cb044269e80c9b10ef58a3eac31", 7832, 7880, 3640, 4800, 456, 360, 0, 32, 64, 160, 544, 7996, 4368, 3648, 3656, 3660, 6080, 2072, 8, 7064, 7104, 7088, 13480, 148, 672, 0},
//offsets for: /mysqlrpm/8.0.25/usr/sbin/mysqld (8.0.25)
{"8.0.25","b39d5a2dc25755666192578d4c20a7d6", 8544, 8584, 4064, 5536, 520, 0, 0, 32, 64, 160, 608, 8700, 5168, 4208, 4216, 4220, 6840, 1656, 32, 7800, 7840, 7824, 11624, 140, 664, 320},
//offsets for: /mysqlrpm/8.0.24/usr/sbin/mysqld (8.0.24)
{"8.0.24","9fb73bdd61549fe4959f559f2048f599", 8544, 8584, 4064, 5536, 520, 0, 0, 32, 64, 160, 608, 8700, 5168, 4208, 4216, 4220, 6840, 1656, 32, 7800, 7840, 7824, 11624, 140, 664, 320},
//offsets for: /mysqlrpm/5.7.34/usr/sbin/mysqld (5.7.34)
{"5.7.34","3178b639c1612f96ec6a1f66909a9099", 7832, 7880, 3640, 4800, 456, 360, 0, 32, 64, 160, 544, 7996, 4368, 3648, 3656, 3660, 6080, 2072, 8, 7064, 7104, 7088, 13480, 148, 672, 0},
//offsets for: /mysqlrpm/5.6.51/usr/sbin/mysqld (5.6.51)
{"5.6.51","536e5cb3ca8ccf249ea2da764c1e19f8", 7000, 7048, 4008, 4528, 72, 2704, 96, 0, 32, 104, 136, 7136, 4400, 2800, 2808, 2812, 536, 0, 0, 6368, 6392, 6376, 13056, 548, 516},
//offsets for: /mysqlrpm/5.7.33/usr/sbin/mysqld (5.7.33)
@@ -420,45 +450,424 @@ const ThdOffsets thd_offsets_arr[] =
const ThdOffsets thd_offsets_arr[] =
{
/* +++ MARIADB 64 OFFSETS GO HERE +++ */
//offsets for: /mariadb/10.5.16/bin/mysqld (10.5.16-MariaDB)
{"10.5.16-MariaDB","a99e23ae8a2a5d1cd2fa802503b68c84", 15248, 15408, 7736, 9504, 88, 3552, 8, 0, 16, 24, 152, 15524, 9136, 5480, 5488, 5492, 672, 0, 0, 14504, 14528, 14512, 24072, 564, 8, 0},
//offsets for: /mariadb/10.7.4/bin/mysqld (10.7.4-MariaDB)
{"10.7.4-MariaDB","f3864f78ec91ecb1316ed3cab08a39aa", 15792, 15968, 7808, 10016, 88, 3528, 8, 0, 16, 24, 152, 16100, 9600, 5664, 5672, 5676, 688, 0, 0, 15048, 15072, 15056, 24744, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.16/usr/sbin/mariadbd (10.5.16-MariaDB)
{"10.5.16-MariaDB","fce7d428095be987c56537bfac9e9257", 15248, 15408, 7736, 9504, 88, 3552, 8, 0, 16, 24, 152, 15524, 9136, 5480, 5488, 5492, 672, 0, 0, 14504, 14528, 14512, 24072, 564, 8, 0},
//offsets for: /mariadbrpm/10.7.4/usr/sbin/mariadbd (10.7.4-MariaDB)
{"10.7.4-MariaDB","5113cb3cb21ea378193d795815ca3da4", 15792, 15968, 7808, 10016, 88, 3528, 8, 0, 16, 24, 152, 16100, 9600, 5664, 5672, 5676, 688, 0, 0, 15048, 15072, 15056, 24744, 564, 8, 0},
//offsets for: /mariadb/10.7.5/bin/mysqld (10.7.5-MariaDB)
{"10.7.5-MariaDB","6d5ca6eb4257ce6f3b176db4f0216f0c", 15792, 15968, 7808, 10016, 88, 3528, 8, 0, 16, 24, 152, 16100, 9600, 5672, 5680, 5684, 688, 0, 0, 15048, 15072, 15056, 24744, 564, 8, 0},
//offsets for: /mariadbrpm/10.7.5/usr/sbin/mariadbd (10.7.5-MariaDB)
{"10.7.5-MariaDB","a033181397444805631c860f72f6ff19", 15792, 15968, 7808, 10016, 88, 3528, 8, 0, 16, 24, 152, 16100, 9600, 5672, 5680, 5684, 688, 0, 0, 15048, 15072, 15056, 24744, 564, 8, 0},
//offsets for: /mariadb/10.2.44/bin/mysqld (10.2.44-MariaDB)
{"10.2.44-MariaDB","9e7388a2050aca7c590e6844f5dd10d1", 13896, 13960, 6688, 8304, 88, 3224, 8, 0, 16, 24, 152, 14060, 8064, 2984, 2992, 2996, 624, 0, 0, 13272, 13296, 13280, 21232, 548, 516, 0},
//offsets for: /mariadb/10.7.3/bin/mysqld (10.7.3-MariaDB)
{"10.7.3-MariaDB","252cfb62266a7b2af0ff4b1c8f8ec2b2", 15760, 15936, 7776, 9984, 88, 3528, 8, 0, 16, 24, 152, 16068, 9568, 5664, 5672, 5676, 656, 0, 0, 15016, 15040, 15024, 24744, 564, 8, 0},
//offsets for: /mariadbrpm/10.7.3/usr/sbin/mariadbd (10.7.3-MariaDB)
{"10.7.3-MariaDB","00ab4d466f2e215e664dafe34481a746", 15760, 15936, 7776, 9984, 88, 3528, 8, 0, 16, 24, 152, 16068, 9568, 5664, 5672, 5676, 656, 0, 0, 15016, 15040, 15024, 24744, 564, 8, 0},
//offsets for: /mariadb/10.6.3/bin/mysqld (10.6.3-MariaDB)
{"10.6.3-MariaDB","fa61914d3b3a334d3ba5a8d019bafb50", 15688, 15848, 7768, 9928, 88, 3512, 8, 0, 16, 24, 152, 15956, 9560, 5672, 5680, 5684, 656, 0, 0, 14944, 14968, 14952, 24528, 564, 8, 0},
//offsets for: /mariadb/10.6.4/bin/mysqld (10.6.4-MariaDB)
{"10.6.4-MariaDB","f41f007042e929ca5b00de57536b3dec", 15664, 15824, 7744, 9904, 88, 3512, 8, 0, 16, 24, 152, 15940, 9536, 5672, 5680, 5684, 656, 0, 0, 14920, 14944, 14928, 24512, 564, 8, 0},
//offsets for: /mariadb/10.6.5/bin/mysqld (10.6.5-MariaDB)
{"10.6.5-MariaDB","82682c5e05878c8c0fcdc8a0ae945483", 15664, 15824, 7744, 9904, 88, 3512, 8, 0, 16, 24, 152, 15940, 9536, 5672, 5680, 5684, 656, 0, 0, 14920, 14944, 14928, 24512, 564, 8, 0},
//offsets for: /mariadb/10.6.7/bin/mysqld (10.6.7-MariaDB)
{"10.6.7-MariaDB","50d6d050b7ce0e882e385c328c20927b", 15664, 15824, 7744, 9904, 88, 3512, 8, 0, 16, 24, 152, 15940, 9536, 5672, 5680, 5684, 656, 0, 0, 14920, 14944, 14928, 24512, 564, 8, 0},
//offsets for: /mariadbrpm/10.6.3/usr/sbin/mariadbd (10.6.3-MariaDB)
{"10.6.3-MariaDB","ebfdcf0f950b82351005a05db08de352", 15688, 15848, 7768, 9928, 88, 3512, 8, 0, 16, 24, 152, 15956, 9560, 5672, 5680, 5684, 656, 0, 0, 14944, 14968, 14952, 24528, 564, 8, 0},
//offsets for: /mariadbrpm/10.6.4/usr/sbin/mariadbd (10.6.4-MariaDB)
{"10.6.4-MariaDB","9a2b4ae4f0b6d6dd9aaae8cd149add2e", 15664, 15824, 7744, 9904, 88, 3512, 8, 0, 16, 24, 152, 15940, 9536, 5672, 5680, 5684, 656, 0, 0, 14920, 14944, 14928, 24512, 564, 8, 0},
//offsets for: /mariadbrpm/10.6.5/usr/sbin/mariadbd (10.6.5-MariaDB)
{"10.6.5-MariaDB","90cfc8ff0ed2aef04154b503bbd5f2f2", 15664, 15824, 7744, 9904, 88, 3512, 8, 0, 16, 24, 152, 15940, 9536, 5672, 5680, 5684, 656, 0, 0, 14920, 14944, 14928, 24512, 564, 8, 0},
//offsets for: /mariadbrpm/10.6.7/usr/sbin/mariadbd (10.6.7-MariaDB)
{"10.6.7-MariaDB","9163361e728a4cfcd20d1d18928fda63", 15664, 15824, 7744, 9904, 88, 3512, 8, 0, 16, 24, 152, 15940, 9536, 5672, 5680, 5684, 656, 0, 0, 14920, 14944, 14928, 24512, 564, 8, 0},
//offsets for: /mariadb/10.4.24/bin/mysqld (10.4.24-MariaDB)
{"10.4.24-MariaDB","d0709b66f85f1d6dbd97f49eec72a30d", 14616, 14768, 7272, 9008, 88, 3536, 8, 0, 16, 24, 152, 14876, 8664, 2984, 2992, 2996, 640, 0, 0, 13992, 14016, 14000, 23408, 564, 8, 0},
//offsets for: /mariadb/10.5.15/bin/mysqld (10.5.15-MariaDB)
{"10.5.15-MariaDB","6cf2a099ba5a317561f42ae66aa9c9f2", 15216, 15376, 7704, 9472, 88, 3552, 8, 0, 16, 24, 152, 15492, 9104, 5480, 5488, 5492, 640, 0, 0, 14472, 14496, 14480, 24072, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.24/usr/sbin/mariadbd (10.4.24-MariaDB)
{"10.4.24-MariaDB","6625d0e2ff924708b83edeb4f2ddd338", 14616, 14768, 7272, 9008, 88, 3536, 8, 0, 16, 24, 152, 14876, 8664, 2984, 2992, 2996, 640, 0, 0, 13992, 14016, 14000, 23408, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.15/usr/sbin/mariadbd (10.5.15-MariaDB)
{"10.5.15-MariaDB","21072edb0f9245ec94cbcfca439f8713", 15216, 15376, 7704, 9472, 88, 3552, 8, 0, 16, 24, 152, 15492, 9104, 5480, 5488, 5492, 640, 0, 0, 14472, 14496, 14480, 24072, 564, 8, 0},
//offsets for: /mariadb/10.2.43/bin/mysqld (10.2.43-MariaDB)
{"10.2.43-MariaDB","3536787cd3635724bc47286f5ffc298e", 13880, 13944, 6672, 8288, 88, 3224, 8, 0, 16, 24, 152, 14044, 8048, 2984, 2992, 2996, 608, 0, 0, 13256, 13280, 13264, 21232, 548, 516, 0},
//offsets for: /mariadb/10.4.22/bin/mysqld (10.4.22-MariaDB)
{"10.4.22-MariaDB","52891aee2583ecc6e1ae386379db035e", 14616, 14768, 7272, 9008, 88, 3536, 8, 0, 16, 24, 152, 14876, 8664, 2984, 2992, 2996, 640, 0, 0, 13992, 14016, 14000, 23408, 564, 8, 0},
//offsets for: /mariadb/10.5.13/bin/mysqld (10.5.13-MariaDB)
{"10.5.13-MariaDB","67696d1272088dee2a265dfb07cfb054", 15216, 15376, 7704, 9472, 88, 3552, 8, 0, 16, 24, 152, 15492, 9104, 5480, 5488, 5492, 640, 0, 0, 14472, 14496, 14480, 24072, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.22/usr/sbin/mariadbd (10.4.22-MariaDB)
{"10.4.22-MariaDB","6df431f35b3df44063ecb537caac51ba", 14616, 14768, 7272, 9008, 88, 3536, 8, 0, 16, 24, 152, 14876, 8664, 2984, 2992, 2996, 640, 0, 0, 13992, 14016, 14000, 23408, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.13/usr/sbin/mariadbd (10.5.13-MariaDB)
{"10.5.13-MariaDB","8cdd61db3a954583d0de6627f5041463", 15216, 15376, 7704, 9472, 88, 3552, 8, 0, 16, 24, 152, 15492, 9104, 5480, 5488, 5492, 640, 0, 0, 14472, 14496, 14480, 24072, 564, 8, 0},
//offsets for: /mariadb/10.2.41/bin/mysqld (10.2.41-MariaDB)
{"10.2.41-MariaDB","48ae2431838e9201157cb39aab69ff42", 13880, 13944, 6672, 8288, 88, 3224, 8, 0, 16, 24, 152, 14044, 8048, 2984, 2992, 2996, 608, 0, 0, 13256, 13280, 13264, 21232, 548, 516, 0},
//offsets for: /mariadb/10.3.32/bin/mysqld (10.3.32-MariaDB)
{"10.3.32-MariaDB","d70e77f42b9c6a91806a62675f85a460", 14480, 14584, 7128, 8856, 88, 3376, 8, 0, 16, 24, 152, 14684, 8512, 2984, 2992, 2996, 608, 0, 0, 13856, 13880, 13864, 22272, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.32/usr/sbin/mysqld (10.3.32-MariaDB)
{"10.3.32-MariaDB","eae27c40edb0c138be53d390fd919908", 14480, 14584, 7128, 8856, 88, 3376, 8, 0, 16, 24, 152, 14684, 8512, 2984, 2992, 2996, 608, 0, 0, 13856, 13880, 13864, 22272, 564, 8, 0},
//offsets for: /mariadb/10.3.31/bin/mysqld (10.3.31-MariaDB)
{"10.3.31-MariaDB","815bdd9ddd142bc125e0ed1342133ce8", 14480, 14584, 7128, 8856, 88, 3376, 8, 0, 16, 24, 152, 14684, 8512, 2984, 2992, 2996, 608, 0, 0, 13856, 13880, 13864, 22272, 564, 8, 0},
//offsets for: /mariadb/10.4.21/bin/mysqld (10.4.21-MariaDB)
{"10.4.21-MariaDB","009cc34ee59d295bfaf5191c3c4c324a", 14616, 14768, 7272, 9008, 88, 3536, 8, 0, 16, 24, 152, 14876, 8664, 2984, 2992, 2996, 640, 0, 0, 13992, 14016, 14000, 23408, 564, 8, 0},
//offsets for: /mariadb/10.5.12/bin/mysqld (10.5.12-MariaDB)
{"10.5.12-MariaDB","b3366805527351dd4fa59d09df71b94c", 15216, 15376, 7704, 9472, 88, 3552, 8, 0, 16, 24, 152, 15492, 9104, 5480, 5488, 5492, 640, 0, 0, 14472, 14496, 14480, 24072, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.10/usr/sbin/mysqld (10.3.10-MariaDB)
{"10.3.10-MariaDB","4c1ec3cf36eddac60b00fd215b76b3bf", 14480, 14584, 7136, 8856, 88, 3304, 8, 0, 16, 24, 152, 14684, 8520, 3136, 3144, 3148, 608, 0, 0, 13856, 13880, 13864, 22264, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.11/usr/sbin/mysqld (10.3.11-MariaDB)
{"10.3.11-MariaDB","c5b149558dc575fd70aad490148f0807", 14480, 14584, 7136, 8856, 88, 3304, 8, 0, 16, 24, 152, 14684, 8520, 3136, 3144, 3148, 608, 0, 0, 13856, 13880, 13864, 22200, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.12/usr/sbin/mysqld (10.3.12-MariaDB)
{"10.3.12-MariaDB","9f7f78cf9a82d661cab616d789962273", 14480, 14584, 7136, 8856, 88, 3304, 8, 0, 16, 24, 152, 14684, 8520, 3136, 3144, 3148, 608, 0, 0, 13856, 13880, 13864, 22200, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.13/usr/sbin/mysqld (10.3.13-MariaDB)
{"10.3.13-MariaDB","a400641cdd19f4ac83b14f51eb5b9ff4", 14488, 14592, 7136, 8864, 88, 3304, 8, 0, 16, 24, 152, 14692, 8520, 3136, 3144, 3148, 608, 0, 0, 13864, 13888, 13872, 22208, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.14/usr/sbin/mysqld (10.3.14-MariaDB)
{"10.3.14-MariaDB","d996bd5a8ea669790bced112389464c5", 14504, 14608, 7152, 8880, 88, 3304, 8, 0, 16, 24, 152, 14708, 8536, 3136, 3144, 3148, 608, 0, 0, 13880, 13904, 13888, 22208, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.15/usr/sbin/mysqld (10.3.15-MariaDB)
{"10.3.15-MariaDB","d4d7c2015c262b472da0ef5666c32f4b", 14504, 14608, 7152, 8880, 88, 3312, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22216, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.16/usr/sbin/mysqld (10.3.16-MariaDB)
{"10.3.16-MariaDB","4032aa4b73510e114d767fd3fb35288e", 14504, 14608, 7152, 8880, 88, 3312, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22216, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.17/usr/sbin/mysqld (10.3.17-MariaDB)
{"10.3.17-MariaDB","1ab7c60e046464b753c37d9421ddd2aa", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22232, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.18/usr/sbin/mysqld (10.3.18-MariaDB)
{"10.3.18-MariaDB","a55e82c05cfe69bdcf4be7fca81385be", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22232, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.20/usr/sbin/mysqld (10.3.20-MariaDB)
{"10.3.20-MariaDB","7f9ec00c412bdf16bc27c3d77f564080", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22232, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.21/usr/sbin/mysqld (10.3.21-MariaDB)
{"10.3.21-MariaDB","04bca1d97a7c49a376fd5b941c58b4ec", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.22/usr/sbin/mysqld (10.3.22-MariaDB)
{"10.3.22-MariaDB","b95f0067f232a0a0c87c3deb3c7a11ee", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22240, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.23/usr/sbin/mysqld (10.3.23-MariaDB)
{"10.3.23-MariaDB","82af92abe526ec9b3553bc6b4bfad46d", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22240, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.24/usr/sbin/mysqld (10.3.24-MariaDB)
{"10.3.24-MariaDB","4e8a7b550da35d7cd73d9df79adb4bfe", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.25/usr/sbin/mysqld (10.3.25-MariaDB)
{"10.3.25-MariaDB","99c67f20085a9981f16dff864afc4008", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.26/usr/sbin/mysqld (10.3.26-MariaDB)
{"10.3.26-MariaDB","a08270bd348731a8a1a2bf1965508d19", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.27/usr/sbin/mysqld (10.3.27-MariaDB)
{"10.3.27-MariaDB","10441ed19212f5ef58a56b71fea6c094", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.28/usr/sbin/mysqld (10.3.28-MariaDB)
{"10.3.28-MariaDB","7102ff78e16835d04b59b692c1ab5ff5", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.29/usr/sbin/mysqld (10.3.29-MariaDB)
{"10.3.29-MariaDB","ec8ec38d47ac6149d65ecc7e97510934", 14504, 14608, 7152, 8880, 88, 3360, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22280, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.30/usr/sbin/mysqld (10.3.30-MariaDB)
{"10.3.30-MariaDB","623b6ecf84bdde77844bb3e2d3412872", 14504, 14608, 7152, 8880, 88, 3376, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22296, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.31/usr/sbin/mysqld (10.3.31-MariaDB)
{"10.3.31-MariaDB","8888f68da45db6814b697da460c36398", 14480, 14584, 7128, 8856, 88, 3376, 8, 0, 16, 24, 152, 14684, 8512, 2984, 2992, 2996, 608, 0, 0, 13856, 13880, 13864, 22272, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.7/usr/sbin/mysqld (10.3.7-MariaDB)
{"10.3.7-MariaDB","1f69ea90663ab8da48dcb2ea320a59fb", 14472, 14576, 7160, 8880, 88, 3304, 8, 0, 16, 24, 152, 14676, 8544, 3136, 3144, 3148, 640, 0, 0, 13848, 13872, 13856, 22200, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.8/usr/sbin/mysqld (10.3.8-MariaDB)
{"10.3.8-MariaDB","1fabdbb9d6999198e0d3e5991c3b940f", 14472, 14576, 7128, 8848, 88, 3296, 8, 0, 16, 24, 152, 14676, 8512, 3136, 3144, 3148, 608, 0, 0, 13848, 13872, 13856, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.9/usr/sbin/mysqld (10.3.9-MariaDB)
{"10.3.9-MariaDB","c4ead2ef94dac03ccaa11c133ae1b73a", 14472, 14576, 7128, 8848, 88, 3296, 8, 0, 16, 24, 152, 14676, 8512, 3136, 3144, 3148, 608, 0, 0, 13848, 13872, 13856, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.10/usr/sbin/mariadbd (10.4.10-MariaDB)
{"10.4.10-MariaDB","eb3b50a9d5e8247ec4852c0f9139a9e4", 14616, 14768, 7272, 9008, 88, 3480, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23328, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.11/usr/sbin/mariadbd (10.4.11-MariaDB)
{"10.4.11-MariaDB","cebccb1fdaf26ffde3d2aa2c7f6735ae", 14616, 14768, 7272, 9008, 88, 3496, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23360, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.12/usr/sbin/mariadbd (10.4.12-MariaDB)
{"10.4.12-MariaDB","16d85928262fd8d9e426d6e6b8ca6ca1", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.13/usr/sbin/mariadbd (10.4.13-MariaDB)
{"10.4.13-MariaDB","b77a65a53afb4b61ff43bd8e004a78f6", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.14/usr/sbin/mariadbd (10.4.14-MariaDB)
{"10.4.14-MariaDB","306c78e2912c1b747ae8996d39e75322", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.15/usr/sbin/mariadbd (10.4.15-MariaDB)
{"10.4.15-MariaDB","2473ba16d3838dff2283dba25bcce89e", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.16/usr/sbin/mariadbd (10.4.16-MariaDB)
{"10.4.16-MariaDB","03f72f8afa35dcd16e7f9a69e7c25fba", 14624, 14776, 7280, 9016, 88, 3488, 8, 0, 16, 24, 152, 14876, 8672, 2984, 2992, 2996, 632, 0, 0, 14000, 14024, 14008, 23360, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.17/usr/sbin/mariadbd (10.4.17-MariaDB)
{"10.4.17-MariaDB","0b0edcb2dbf2fd44a54c5ddf97ae5bdc", 14624, 14776, 7280, 9016, 88, 3488, 8, 0, 16, 24, 152, 14876, 8672, 2984, 2992, 2996, 632, 0, 0, 14000, 14024, 14008, 23360, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.18/usr/sbin/mariadbd (10.4.18-MariaDB)
{"10.4.18-MariaDB","64df46550846ea55c0bb89c964d119ca", 14624, 14776, 7280, 9016, 88, 3488, 8, 0, 16, 24, 152, 14876, 8672, 2984, 2992, 2996, 632, 0, 0, 14000, 14024, 14008, 23360, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.19/usr/sbin/mariadbd (10.4.19-MariaDB)
{"10.4.19-MariaDB","3528acc6b9e0a9f48a6173126b0dc3de", 14640, 14792, 7296, 9032, 88, 3520, 8, 0, 16, 24, 152, 14892, 8688, 2984, 2992, 2996, 640, 0, 0, 14016, 14040, 14024, 23408, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.20/usr/sbin/mariadbd (10.4.20-MariaDB)
{"10.4.20-MariaDB","89ba50314220259f7e92f6b98d82967c", 14640, 14792, 7296, 9032, 88, 3536, 8, 0, 16, 24, 152, 14892, 8688, 2984, 2992, 2996, 640, 0, 0, 14016, 14040, 14024, 23424, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.21/usr/sbin/mariadbd (10.4.21-MariaDB)
{"10.4.21-MariaDB","47091f6903342175c79f65624531a55d", 14616, 14768, 7272, 9008, 88, 3536, 8, 0, 16, 24, 152, 14876, 8664, 2984, 2992, 2996, 640, 0, 0, 13992, 14016, 14000, 23408, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.6/usr/sbin/mariadbd (10.4.6-MariaDB)
{"10.4.6-MariaDB","f20440e4f263df7186c4c91fd691fb73", 14616, 14768, 7272, 9008, 88, 3472, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23304, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.7/usr/sbin/mariadbd (10.4.7-MariaDB)
{"10.4.7-MariaDB","9397f9126de6e7377d2e29e4a0a7ebe8", 14616, 14768, 7272, 9008, 88, 3480, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23320, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.8/usr/sbin/mariadbd (10.4.8-MariaDB)
{"10.4.8-MariaDB","967163e897ddf59a58797b645036a801", 14616, 14768, 7272, 9008, 88, 3480, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23320, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.10/usr/sbin/mariadbd (10.5.10-MariaDB)
{"10.5.10-MariaDB","336e22b5e2298b95c17810aac572f6d7", 15240, 15400, 7728, 9496, 88, 3536, 8, 0, 16, 24, 152, 15508, 9128, 5480, 5488, 5492, 640, 0, 0, 14496, 14520, 14504, 24072, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.11/usr/sbin/mariadbd (10.5.11-MariaDB)
{"10.5.11-MariaDB","fb61b72238c3203f6c6d263482eda650", 15240, 15400, 7728, 9496, 88, 3552, 8, 0, 16, 24, 152, 15508, 9128, 5480, 5488, 5492, 640, 0, 0, 14496, 14520, 14504, 24088, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.12/usr/sbin/mariadbd (10.5.12-MariaDB)
{"10.5.12-MariaDB","fe64965613abcf31d50e5a4315f17c12", 15216, 15376, 7704, 9472, 88, 3552, 8, 0, 16, 24, 152, 15492, 9104, 5480, 5488, 5492, 640, 0, 0, 14472, 14496, 14480, 24072, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.4/usr/sbin/mariadbd (10.5.4-MariaDB)
{"10.5.4-MariaDB","3654c448ff5318de5870040cbf5c5b10", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.5/usr/sbin/mariadbd (10.5.5-MariaDB)
{"10.5.5-MariaDB","39d53533a39ff2fe11c1c5ed6773cd11", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.6/usr/sbin/mariadbd (10.5.6-MariaDB)
{"10.5.6-MariaDB","2047d965f6f9dbb9d69508a88ab6f5b3", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.7/usr/sbin/mariadbd (10.5.7-MariaDB)
{"10.5.7-MariaDB","9d929cd4fea6dc6f3b13588ac41559b2", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.8/usr/sbin/mariadbd (10.5.8-MariaDB)
{"10.5.8-MariaDB","6a40182f423179b5e55752c72834c25d", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.9/usr/sbin/mariadbd (10.5.9-MariaDB)
{"10.5.9-MariaDB","725ac4b90ca420f615bd71956edad7a6", 15224, 15384, 7712, 9480, 88, 3504, 8, 0, 16, 24, 152, 15492, 9112, 5480, 5488, 5492, 632, 0, 0, 14480, 14504, 14488, 24024, 564, 8, 0},
//offsets for: /mariadb/10.2.40/bin/mysqld (10.2.40-MariaDB)
{"10.2.40-MariaDB","10575567e856fee1b2f271d45b3767be", 13880, 13944, 6672, 8288, 88, 3224, 8, 0, 16, 24, 152, 14044, 8048, 2984, 2992, 2996, 608, 0, 0, 13256, 13280, 13264, 21232, 548, 516, 0},
//offsets for: /mariadb/10.2.39/bin/mysqld (10.2.39-MariaDB)
{"10.2.39-MariaDB","49a2582f3704582afa9f29ca65d4e148", 13880, 13944, 6672, 8288, 88, 3224, 8, 0, 16, 24, 152, 14044, 8048, 2984, 2992, 2996, 608, 0, 0, 13256, 13280, 13264, 21232, 548, 516, 0},
//offsets for: /mariadb/10.2.38/bin/mysqld (10.2.38-MariaDB)
{"10.2.38-MariaDB","5c251d90decd75a6a6b07075ffa985b7", 13880, 13944, 6672, 8288, 88, 3208, 8, 0, 16, 24, 152, 14044, 8048, 2984, 2992, 2996, 608, 0, 0, 13256, 13280, 13264, 21216, 548, 516, 0},
//offsets for: /mariadbrpm/10.5.11/usr/sbin/mysqld (10.5.11-MariaDB)
{"10.5.11-MariaDB","fb61b72238c3203f6c6d263482eda650", 15240, 15400, 7728, 9496, 88, 3552, 8, 0, 16, 24, 152, 15508, 9128, 5480, 5488, 5492, 640, 0, 0, 14496, 14520, 14504, 24088, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.10/usr/sbin/mysqld (10.5.10-MariaDB)
{"10.5.10-MariaDB","336e22b5e2298b95c17810aac572f6d7", 15240, 15400, 7728, 9496, 88, 3536, 8, 0, 16, 24, 152, 15508, 9128, 5480, 5488, 5492, 640, 0, 0, 14496, 14520, 14504, 24072, 564, 8, 0},
//offsets for: /mariadb/10.5.11/bin/mysqld (10.5.11-MariaDB)
{"10.5.11-MariaDB","9fcf9063b5ff4b342c7e7c8ddcc6689b", 15240, 15400, 7728, 9496, 88, 3552, 8, 0, 16, 24, 152, 15508, 9128, 5480, 5488, 5492, 640, 0, 0, 14496, 14520, 14504, 24088, 564, 8, 0},
//offsets for: /mariadb/10.5.10/bin/mysqld (10.5.10-MariaDB)
{"10.5.10-MariaDB","28c2b9c99c4169b594030bfd5b745ed8", 15240, 15400, 7728, 9496, 88, 3536, 8, 0, 16, 24, 152, 15508, 9128, 5480, 5488, 5492, 640, 0, 0, 14496, 14520, 14504, 24072, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.20/usr/sbin/mysqld (10.4.20-MariaDB)
{"10.4.20-MariaDB","89ba50314220259f7e92f6b98d82967c", 14640, 14792, 7296, 9032, 88, 3536, 8, 0, 16, 24, 152, 14892, 8688, 2984, 2992, 2996, 640, 0, 0, 14016, 14040, 14024, 23424, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.19/usr/sbin/mysqld (10.4.19-MariaDB)
{"10.4.19-MariaDB","3528acc6b9e0a9f48a6173126b0dc3de", 14640, 14792, 7296, 9032, 88, 3520, 8, 0, 16, 24, 152, 14892, 8688, 2984, 2992, 2996, 640, 0, 0, 14016, 14040, 14024, 23408, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.30/usr/sbin/mysqld (10.3.30-MariaDB)
{"10.3.30-MariaDB","623b6ecf84bdde77844bb3e2d3412872", 14504, 14608, 7152, 8880, 88, 3376, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22296, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.29/usr/sbin/mysqld (10.3.29-MariaDB)
{"10.3.29-MariaDB","ec8ec38d47ac6149d65ecc7e97510934", 14504, 14608, 7152, 8880, 88, 3360, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22280, 564, 8, 0},
//offsets for: /mariadb/10.4.20/bin/mysqld (10.4.20-MariaDB)
{"10.4.20-MariaDB","6f5933c750a5aedba02321b20eb0e81c", 14640, 14792, 7296, 9032, 88, 3536, 8, 0, 16, 24, 152, 14892, 8688, 2984, 2992, 2996, 640, 0, 0, 14016, 14040, 14024, 23424, 564, 8, 0},
//offsets for: /mariadb/10.4.19/bin/mysqld (10.4.19-MariaDB)
{"10.4.19-MariaDB","8444bbfe79d0f423d6f03ab101e1c19d", 14640, 14792, 7296, 9032, 88, 3520, 8, 0, 16, 24, 152, 14892, 8688, 2984, 2992, 2996, 640, 0, 0, 14016, 14040, 14024, 23408, 564, 8, 0},
//offsets for: /mariadb/10.3.30/bin/mysqld (10.3.30-MariaDB)
{"10.3.30-MariaDB","ec195c5ed60b7fc54b1ad016da0a91b1", 14504, 14608, 7152, 8880, 88, 3376, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22296, 564, 8, 0},
//offsets for: /mariadb/10.3.29/bin/mysqld (10.3.29-MariaDB)
{"10.3.29-MariaDB","af473d468d9a6f29b47c962666849d5a", 14504, 14608, 7152, 8880, 88, 3360, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22280, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.9/usr/sbin/mysqld (10.5.9-MariaDB)
{"10.5.9-MariaDB","725ac4b90ca420f615bd71956edad7a6", 15224, 15384, 7712, 9480, 88, 3504, 8, 0, 16, 24, 152, 15492, 9112, 5480, 5488, 5492, 632, 0, 0, 14480, 14504, 14488, 24024, 564, 8},
{"10.5.9-MariaDB","725ac4b90ca420f615bd71956edad7a6", 15224, 15384, 7712, 9480, 88, 3504, 8, 0, 16, 24, 152, 15492, 9112, 5480, 5488, 5492, 632, 0, 0, 14480, 14504, 14488, 24024, 564, 8, 0},
//offsets for: /mariadb/10.5.9/bin/mysqld (10.5.9-MariaDB)
{"10.5.9-MariaDB","a6abda02a6438f3254829a007ef31a8d", 15224, 15384, 7712, 9480, 88, 3504, 8, 0, 16, 24, 152, 15492, 9112, 5480, 5488, 5492, 632, 0, 0, 14480, 14504, 14488, 24024, 564, 8},
{"10.5.9-MariaDB","a6abda02a6438f3254829a007ef31a8d", 15224, 15384, 7712, 9480, 88, 3504, 8, 0, 16, 24, 152, 15492, 9112, 5480, 5488, 5492, 632, 0, 0, 14480, 14504, 14488, 24024, 564, 8, 0},
//offsets for: /mariadb/10.5.9/bin/mysqld (10.5.9-MariaDB) systemd
{"10.5.9-MariaDB","43c43dfad7fc3e3b7a26a59c2bff1fa8", 15224, 15384, 7712, 9480, 88, 3504, 8, 0, 16, 24, 152, 15492, 9112, 5480, 5488, 5492, 632, 0, 0, 14480, 14504, 14488, 24024, 564, 8},
{"10.5.9-MariaDB","43c43dfad7fc3e3b7a26a59c2bff1fa8", 15224, 15384, 7712, 9480, 88, 3504, 8, 0, 16, 24, 152, 15492, 9112, 5480, 5488, 5492, 632, 0, 0, 14480, 14504, 14488, 24024, 564, 8, 0},
//offsets for: /mariadb/10.2.37/bin/mysqld (10.2.37-MariaDB)
{"10.2.37-MariaDB","2ae941e007e26f2f4a6108e359b6ee97", 13880, 13944, 6672, 8288, 88, 3208, 8, 0, 16, 24, 152, 14044, 8048, 2984, 2992, 2996, 608, 0, 0, 13256, 13280, 13264, 21216, 548, 516},
//offsets for: /mariadbrpm/10.5.8/usr/sbin/mysqld (10.5.8-MariaDB)
{"10.5.8-MariaDB","6a40182f423179b5e55752c72834c25d", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8},
{"10.5.8-MariaDB","6a40182f423179b5e55752c72834c25d", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.7/usr/sbin/mysqld (10.5.7-MariaDB)
{"10.5.7-MariaDB","9d929cd4fea6dc6f3b13588ac41559b2", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8},
{"10.5.7-MariaDB","9d929cd4fea6dc6f3b13588ac41559b2", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.6/usr/sbin/mysqld (10.5.6-MariaDB)
{"10.5.6-MariaDB","2047d965f6f9dbb9d69508a88ab6f5b3", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8},
{"10.5.6-MariaDB","2047d965f6f9dbb9d69508a88ab6f5b3", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.5/usr/sbin/mysqld (10.5.5-MariaDB)
{"10.5.5-MariaDB","39d53533a39ff2fe11c1c5ed6773cd11", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8},
{"10.5.5-MariaDB","39d53533a39ff2fe11c1c5ed6773cd11", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8, 0},
//offsets for: /mariadbrpm/10.5.4/usr/sbin/mysqld (10.5.4-MariaDB)
{"10.5.4-MariaDB","3654c448ff5318de5870040cbf5c5b10", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8},
{"10.5.4-MariaDB","3654c448ff5318de5870040cbf5c5b10", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8, 0},
//offsets for: /mariadb/10.5.8/bin/mysqld (10.5.8-MariaDB) systemd
{"10.5.8-MariaDB","a62479253a14b7a1ffd3bf75b3c98604", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8},
{"10.5.8-MariaDB","a62479253a14b7a1ffd3bf75b3c98604", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8, 0},
//offsets for: /mariadb/10.5.7/bin/mysqld (10.5.7-MariaDB) systemd
{"10.5.7-MariaDB","8c6bfb8ef6c4c3107975f0071db319f2", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8},
{"10.5.7-MariaDB","8c6bfb8ef6c4c3107975f0071db319f2", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8, 0},
//offsets for: /mariadb/10.5.6/bin/mysqld (10.5.6-MariaDB) systemd
{"10.5.6-MariaDB","bace784d1ab7b882165972803dd66677", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8},
{"10.5.6-MariaDB","bace784d1ab7b882165972803dd66677", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8, 0},
//offsets for: /mariadb/10.5.5/bin/mysqld (10.5.5-MariaDB) systemd
{"10.5.5-MariaDB","8723bb0beff85d99d4966a556eeb8571", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8},
{"10.5.5-MariaDB","8723bb0beff85d99d4966a556eeb8571", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8, 0},
//offsets for: /mariadb/10.5.4/bin/mysqld (10.5.4-MariaDB) systemd
{"10.5.4-MariaDB","706ce2652d5b6dd69c1e425b934e20f3", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8},
{"10.5.4-MariaDB","706ce2652d5b6dd69c1e425b934e20f3", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8, 0},
//offsets for: /mariadb/10.5.8/bin/mysqld (10.5.8-MariaDB)
{"10.5.8-MariaDB","8daa247e5af6c32c49f1acfc6dbc5070", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8},
{"10.5.8-MariaDB","8daa247e5af6c32c49f1acfc6dbc5070", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8, 0},
//offsets for: /mariadb/10.5.7/bin/mysqld (10.5.7-MariaDB)
{"10.5.7-MariaDB","3d992f183a7faa381d9dd2a73b296f61", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8},
{"10.5.7-MariaDB","3d992f183a7faa381d9dd2a73b296f61", 15216, 15376, 7704, 9472, 88, 3504, 8, 0, 16, 24, 152, 15484, 9104, 5480, 5488, 5492, 632, 0, 0, 14472, 14496, 14480, 24016, 564, 8, 0},
//offsets for: /mariadb/10.5.6/bin/mysqld (10.5.6-MariaDB)
{"10.5.6-MariaDB","c2b3f23934cd4cb421a7e26ce68731bf", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8},
{"10.5.6-MariaDB","c2b3f23934cd4cb421a7e26ce68731bf", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8, 0},
//offsets for: /mariadb/10.5.5/bin/mysqld (10.5.5-MariaDB)
{"10.5.5-MariaDB","ede1dfe21489d98ef9c5b663b381fe8e", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8},
{"10.5.5-MariaDB","ede1dfe21489d98ef9c5b663b381fe8e", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8, 0},
//offsets for: /mariadb/10.5.4/bin/mysqld (10.5.4-MariaDB)
{"10.5.4-MariaDB","631e6eb51c07e3d20d41769b7f64c994", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8},
{"10.5.4-MariaDB","631e6eb51c07e3d20d41769b7f64c994", 14824, 14984, 7312, 9080, 88, 3512, 8, 0, 16, 24, 152, 15092, 8712, 5480, 5488, 5492, 624, 0, 0, 14080, 14104, 14088, 23632, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.18/usr/sbin/mysqld (10.4.18-MariaDB)
{"10.4.18-MariaDB","64df46550846ea55c0bb89c964d119ca", 14624, 14776, 7280, 9016, 88, 3488, 8, 0, 16, 24, 152, 14876, 8672, 2984, 2992, 2996, 632, 0, 0, 14000, 14024, 14008, 23360, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.17/usr/sbin/mysqld (10.4.17-MariaDB)
{"10.4.17-MariaDB","0b0edcb2dbf2fd44a54c5ddf97ae5bdc", 14624, 14776, 7280, 9016, 88, 3488, 8, 0, 16, 24, 152, 14876, 8672, 2984, 2992, 2996, 632, 0, 0, 14000, 14024, 14008, 23360, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.16/usr/sbin/mysqld (10.4.16-MariaDB)
{"10.4.16-MariaDB","03f72f8afa35dcd16e7f9a69e7c25fba", 14624, 14776, 7280, 9016, 88, 3488, 8, 0, 16, 24, 152, 14876, 8672, 2984, 2992, 2996, 632, 0, 0, 14000, 14024, 14008, 23360, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.15/usr/sbin/mysqld (10.4.15-MariaDB)
{"10.4.15-MariaDB","2473ba16d3838dff2283dba25bcce89e", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.14/usr/sbin/mysqld (10.4.14-MariaDB)
{"10.4.14-MariaDB","306c78e2912c1b747ae8996d39e75322", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.13/usr/sbin/mysqld (10.4.13-MariaDB)
{"10.4.13-MariaDB","b77a65a53afb4b61ff43bd8e004a78f6", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.12/usr/sbin/mysqld (10.4.12-MariaDB)
{"10.4.12-MariaDB","16d85928262fd8d9e426d6e6b8ca6ca1", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.11/usr/sbin/mysqld (10.4.11-MariaDB)
{"10.4.11-MariaDB","cebccb1fdaf26ffde3d2aa2c7f6735ae", 14616, 14768, 7272, 9008, 88, 3496, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23360, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.10/usr/sbin/mysqld (10.4.10-MariaDB)
{"10.4.10-MariaDB","eb3b50a9d5e8247ec4852c0f9139a9e4", 14616, 14768, 7272, 9008, 88, 3480, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23328, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.8/usr/sbin/mysqld (10.4.8-MariaDB)
{"10.4.8-MariaDB","967163e897ddf59a58797b645036a801", 14616, 14768, 7272, 9008, 88, 3480, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23320, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.7/usr/sbin/mysqld (10.4.7-MariaDB)
{"10.4.7-MariaDB","9397f9126de6e7377d2e29e4a0a7ebe8", 14616, 14768, 7272, 9008, 88, 3480, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23320, 564, 8, 0},
//offsets for: /mariadbrpm/10.4.6/usr/sbin/mysqld (10.4.6-MariaDB)
{"10.4.6-MariaDB","f20440e4f263df7186c4c91fd691fb73", 14616, 14768, 7272, 9008, 88, 3472, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23304, 564, 8, 0},
//offsets for: /mariadb/10.4.18/bin/mysqld (10.4.18-MariaDB) systemd
{"10.4.18-MariaDB","ad6e29c1198bb876264d0f9c0748149c", 14624, 14776, 7280, 9016, 88, 3488, 8, 0, 16, 24, 152, 14876, 8672, 2984, 2992, 2996, 632, 0, 0, 14000, 14024, 14008, 23360, 564, 8, 0},
//offsets for: /mariadb/10.4.17/bin/mysqld (10.4.17-MariaDB) systemd
{"10.4.17-MariaDB","d4559bf63cf1e20814a15ac8bf177bf6", 14624, 14776, 7280, 9016, 88, 3488, 8, 0, 16, 24, 152, 14876, 8672, 2984, 2992, 2996, 632, 0, 0, 14000, 14024, 14008, 23360, 564, 8, 0},
//offsets for: /mariadb/10.4.16/bin/mysqld (10.4.16-MariaDB) systemd
{"10.4.16-MariaDB","950124d3089a955eff9434c944a7ca18", 14624, 14776, 7280, 9016, 88, 3488, 8, 0, 16, 24, 152, 14876, 8672, 2984, 2992, 2996, 632, 0, 0, 14000, 14024, 14008, 23360, 564, 8, 0},
//offsets for: /mariadb/10.4.15/bin/mysqld (10.4.15-MariaDB) systemd
{"10.4.15-MariaDB","ddf06b8c881f10d691e32a41195659d2", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadb/10.4.14/bin/mysqld (10.4.14-MariaDB) systemd
{"10.4.14-MariaDB","17ea17b04234a1aedced242c4403e921", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadb/10.4.13/bin/mysqld (10.4.13-MariaDB) systemd
{"10.4.13-MariaDB","d2789ca38098d19eb6c624f88b66efc5", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadb/10.4.12/bin/mysqld (10.4.12-MariaDB) systemd
{"10.4.12-MariaDB","159f3aa33ad9d4653eed9cb9e4470dcf", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadb/10.4.11/bin/mysqld (10.4.11-MariaDB) systemd
{"10.4.11-MariaDB","346e46fb6e53ee03f722ef9b28b21ac6", 14616, 14768, 7272, 9008, 88, 3496, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23360, 564, 8, 0},
//offsets for: /mariadb/10.4.10/bin/mysqld (10.4.10-MariaDB) systemd
{"10.4.10-MariaDB","7635e2cffd76649167989bfddc1b9f93", 14616, 14768, 7272, 9008, 88, 3480, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23328, 564, 8, 0},
//offsets for: /mariadb/10.4.8/bin/mysqld (10.4.8-MariaDB) systemd
{"10.4.8-MariaDB","a55b1558227a9f3c91c279fb8045efb8", 14616, 14768, 7272, 9008, 88, 3480, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23320, 564, 8, 0},
//offsets for: /mariadb/10.4.7/bin/mysqld (10.4.7-MariaDB) systemd
{"10.4.7-MariaDB","e321670955bc21af9758ba1e40c66376", 14616, 14768, 7272, 9008, 88, 3480, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23320, 564, 8, 0},
//offsets for: /mariadb/10.4.6/bin/mysqld (10.4.6-MariaDB) systemd
{"10.4.6-MariaDB","75c314f8d390ce9fe2d38e7015dac51c", 14616, 14768, 7272, 9008, 88, 3472, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23304, 564, 8, 0},
//offsets for: /mariadb/10.4.18/bin/mysqld (10.4.18-MariaDB)
{"10.4.18-MariaDB","8611ef2eb3ce71c1dbdfa639ca19d14b", 14624, 14776, 7280, 9016, 88, 3488, 8, 0, 16, 24, 152, 14876, 8672, 2984, 2992, 2996, 632, 0, 0, 14000, 14024, 14008, 23360, 564, 8, 0},
//offsets for: /mariadb/10.4.17/bin/mysqld (10.4.17-MariaDB)
{"10.4.17-MariaDB","77eb9fef30cb182d9f31498d0038f612", 14624, 14776, 7280, 9016, 88, 3488, 8, 0, 16, 24, 152, 14876, 8672, 2984, 2992, 2996, 632, 0, 0, 14000, 14024, 14008, 23360, 564, 8, 0},
//offsets for: /mariadb/10.4.16/bin/mysqld (10.4.16-MariaDB)
{"10.4.16-MariaDB","337b85ebe7521547dddab7092570fec8", 14624, 14776, 7280, 9016, 88, 3488, 8, 0, 16, 24, 152, 14876, 8672, 2984, 2992, 2996, 632, 0, 0, 14000, 14024, 14008, 23360, 564, 8, 0},
//offsets for: /mariadb/10.4.15/bin/mysqld (10.4.15-MariaDB)
{"10.4.15-MariaDB","5a33657f5f8a9aba62a60ae4f8407485", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadb/10.4.14/bin/mysqld (10.4.14-MariaDB)
{"10.4.14-MariaDB","9ff2780b500f0c18851b29989192fd3b", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadb/10.4.13/bin/mysqld (10.4.13-MariaDB)
{"10.4.13-MariaDB","ea1efab78e4a95991796dfc23a76c7c1", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadb/10.4.12/bin/mysqld (10.4.12-MariaDB)
{"10.4.12-MariaDB","dba6d562a5bab49389672915985af73e", 14616, 14768, 7272, 9008, 88, 3488, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23352, 564, 8, 0},
//offsets for: /mariadb/10.4.11/bin/mysqld (10.4.11-MariaDB)
{"10.4.11-MariaDB","c7a8c449da685c3fd44122c5feb74d5c", 14616, 14768, 7272, 9008, 88, 3496, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23360, 564, 8, 0},
//offsets for: /mariadb/10.4.10/bin/mysqld (10.4.10-MariaDB)
{"10.4.10-MariaDB","2e9f5e8f5b272dd6b06b79fe411aa6d1", 14616, 14768, 7272, 9008, 88, 3480, 8, 0, 16, 24, 152, 14868, 8664, 2984, 2992, 2996, 624, 0, 0, 13992, 14016, 14000, 23328, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.28/usr/sbin/mysqld (10.3.28-MariaDB)
{"10.3.28-MariaDB","7102ff78e16835d04b59b692c1ab5ff5", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.27/usr/sbin/mysqld (10.3.27-MariaDB)
{"10.3.27-MariaDB","10441ed19212f5ef58a56b71fea6c094", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.26/usr/sbin/mysqld (10.3.26-MariaDB)
{"10.3.26-MariaDB","a08270bd348731a8a1a2bf1965508d19", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.25/usr/sbin/mysqld (10.3.25-MariaDB)
{"10.3.25-MariaDB","99c67f20085a9981f16dff864afc4008", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.24/usr/sbin/mysqld (10.3.24-MariaDB)
{"10.3.24-MariaDB","4e8a7b550da35d7cd73d9df79adb4bfe", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.23/usr/sbin/mysqld (10.3.23-MariaDB)
{"10.3.23-MariaDB","82af92abe526ec9b3553bc6b4bfad46d", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22240, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.22/usr/sbin/mysqld (10.3.22-MariaDB)
{"10.3.22-MariaDB","b95f0067f232a0a0c87c3deb3c7a11ee", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22240, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.21/usr/sbin/mysqld (10.3.21-MariaDB)
{"10.3.21-MariaDB","04bca1d97a7c49a376fd5b941c58b4ec", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.20/usr/sbin/mysqld (10.3.20-MariaDB)
{"10.3.20-MariaDB","7f9ec00c412bdf16bc27c3d77f564080", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22232, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.18/usr/sbin/mysqld (10.3.18-MariaDB)
{"10.3.18-MariaDB","a55e82c05cfe69bdcf4be7fca81385be", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22232, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.17/usr/sbin/mysqld (10.3.17-MariaDB)
{"10.3.17-MariaDB","1ab7c60e046464b753c37d9421ddd2aa", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22232, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.16/usr/sbin/mysqld (10.3.16-MariaDB)
{"10.3.16-MariaDB","4032aa4b73510e114d767fd3fb35288e", 14504, 14608, 7152, 8880, 88, 3312, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22216, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.15/usr/sbin/mysqld (10.3.15-MariaDB)
{"10.3.15-MariaDB","d4d7c2015c262b472da0ef5666c32f4b", 14504, 14608, 7152, 8880, 88, 3312, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22216, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.14/usr/sbin/mysqld (10.3.14-MariaDB)
{"10.3.14-MariaDB","d996bd5a8ea669790bced112389464c5", 14504, 14608, 7152, 8880, 88, 3304, 8, 0, 16, 24, 152, 14708, 8536, 3136, 3144, 3148, 608, 0, 0, 13880, 13904, 13888, 22208, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.13/usr/sbin/mysqld (10.3.13-MariaDB)
{"10.3.13-MariaDB","a400641cdd19f4ac83b14f51eb5b9ff4", 14488, 14592, 7136, 8864, 88, 3304, 8, 0, 16, 24, 152, 14692, 8520, 3136, 3144, 3148, 608, 0, 0, 13864, 13888, 13872, 22208, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.12/usr/sbin/mysqld (10.3.12-MariaDB)
{"10.3.12-MariaDB","9f7f78cf9a82d661cab616d789962273", 14480, 14584, 7136, 8856, 88, 3304, 8, 0, 16, 24, 152, 14684, 8520, 3136, 3144, 3148, 608, 0, 0, 13856, 13880, 13864, 22200, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.11/usr/sbin/mysqld (10.3.11-MariaDB)
{"10.3.11-MariaDB","c5b149558dc575fd70aad490148f0807", 14480, 14584, 7136, 8856, 88, 3304, 8, 0, 16, 24, 152, 14684, 8520, 3136, 3144, 3148, 608, 0, 0, 13856, 13880, 13864, 22200, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.10/usr/sbin/mysqld (10.3.10-MariaDB)
{"10.3.10-MariaDB","4c1ec3cf36eddac60b00fd215b76b3bf", 14480, 14584, 7136, 8856, 88, 3304, 8, 0, 16, 24, 152, 14684, 8520, 3136, 3144, 3148, 608, 0, 0, 13856, 13880, 13864, 22264, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.9/usr/sbin/mysqld (10.3.9-MariaDB)
{"10.3.9-MariaDB","c4ead2ef94dac03ccaa11c133ae1b73a", 14472, 14576, 7128, 8848, 88, 3296, 8, 0, 16, 24, 152, 14676, 8512, 3136, 3144, 3148, 608, 0, 0, 13848, 13872, 13856, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.8/usr/sbin/mysqld (10.3.8-MariaDB)
{"10.3.8-MariaDB","1fabdbb9d6999198e0d3e5991c3b940f", 14472, 14576, 7128, 8848, 88, 3296, 8, 0, 16, 24, 152, 14676, 8512, 3136, 3144, 3148, 608, 0, 0, 13848, 13872, 13856, 22248, 564, 8, 0},
//offsets for: /mariadbrpm/10.3.7/usr/sbin/mysqld (10.3.7-MariaDB)
{"10.3.7-MariaDB","1f69ea90663ab8da48dcb2ea320a59fb", 14472, 14576, 7160, 8880, 88, 3304, 8, 0, 16, 24, 152, 14676, 8544, 3136, 3144, 3148, 640, 0, 0, 13848, 13872, 13856, 22200, 564, 8, 0},
//offsets for: /mariadb/10.3.28/bin/mysqld (10.3.28-MariaDB) systemd
{"10.3.28-MariaDB","77711fcd009136de255f3928630941ea", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.27/bin/mysqld (10.3.27-MariaDB) systemd
{"10.3.27-MariaDB","37bd1db9f2387168a3ec98b7171a451f", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.26/bin/mysqld (10.3.26-MariaDB) systemd
{"10.3.26-MariaDB","2c083e685c4c633112561869eedfede5", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.25/bin/mysqld (10.3.25-MariaDB) systemd
{"10.3.25-MariaDB","4cb19ccf774597382fb90e7e97cac405", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.24/bin/mysqld (10.3.24-MariaDB) systemd
{"10.3.24-MariaDB","8f9638a3fa537a6eb4f3afd27639461c", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.23/bin/mysqld (10.3.23-MariaDB) systemd
{"10.3.23-MariaDB","c7a5ae60b50af7c92658738f0d0e967a", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22240, 564, 8, 0},
//offsets for: /mariadb/10.3.22/bin/mysqld (10.3.22-MariaDB) systemd
{"10.3.22-MariaDB","3efb46d2a446779d764d78f047880eb6", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22240, 564, 8, 0},
//offsets for: /mariadb/10.3.21/bin/mysqld (10.3.21-MariaDB) systemd
{"10.3.21-MariaDB","c7fdb8aa063bb8d6611fba276e430547", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.20/bin/mysqld (10.3.20-MariaDB) systemd
{"10.3.20-MariaDB","f6c2f6cb33322172e5543cff265fdcd0", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22232, 564, 8, 0},
//offsets for: /mariadb/10.3.18/bin/mysqld (10.3.18-MariaDB) systemd
{"10.3.18-MariaDB","60e6e1abfdad087853b7d9f185bbf014", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22232, 564, 8, 0},
//offsets for: /mariadb/10.3.17/bin/mysqld (10.3.17-MariaDB) systemd
{"10.3.17-MariaDB","204db92e397340a52fbddfc746f628ff", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22232, 564, 8, 0},
//offsets for: /mariadb/10.3.16/bin/mysqld (10.3.16-MariaDB) systemd
{"10.3.16-MariaDB","f979363ec8b332e6b2e2ba574275d527", 14504, 14608, 7152, 8880, 88, 3312, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22216, 564, 8, 0},
//offsets for: /mariadb/10.3.15/bin/mysqld (10.3.15-MariaDB) systemd
{"10.3.15-MariaDB","15a0c425fcaf17659afb00ac69f9f1df", 14504, 14608, 7152, 8880, 88, 3312, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22216, 564, 8, 0},
//offsets for: /mariadb/10.3.14/bin/mysqld (10.3.14-MariaDB) systemd
{"10.3.14-MariaDB","a4f2cdb2cb2e12757ae0e4e3caeb63fa", 14504, 14608, 7152, 8880, 88, 3304, 8, 0, 16, 24, 152, 14708, 8536, 3136, 3144, 3148, 608, 0, 0, 13880, 13904, 13888, 22208, 564, 8, 0},
//offsets for: /mariadb/10.3.13/bin/mysqld (10.3.13-MariaDB) systemd
{"10.3.13-MariaDB","91c5a152a1a810ba0bb2a833ed48ee0b", 14488, 14592, 7136, 8864, 88, 3304, 8, 0, 16, 24, 152, 14692, 8520, 3136, 3144, 3148, 608, 0, 0, 13864, 13888, 13872, 22208, 564, 8, 0},
//offsets for: /mariadb/10.3.12/bin/mysqld (10.3.12-MariaDB) systemd
{"10.3.12-MariaDB","305029038e177c4680863cb6ba94b3bd", 14480, 14584, 7136, 8856, 88, 3304, 8, 0, 16, 24, 152, 14684, 8520, 3136, 3144, 3148, 608, 0, 0, 13856, 13880, 13864, 22200, 564, 8, 0},
//offsets for: /mariadb/10.3.11/bin/mysqld (10.3.11-MariaDB) systemd
{"10.3.11-MariaDB","69498ca2d4af50a79d586b4566bc72f6", 14480, 14584, 7136, 8856, 88, 3304, 8, 0, 16, 24, 152, 14684, 8520, 3136, 3144, 3148, 608, 0, 0, 13856, 13880, 13864, 22200, 564, 8, 0},
//offsets for: /mariadb/10.3.10/bin/mysqld (10.3.10-MariaDB) systemd
{"10.3.10-MariaDB","26a310d99c7339b8078a04de8baf2ebe", 14480, 14584, 7136, 8856, 88, 3304, 8, 0, 16, 24, 152, 14684, 8520, 3136, 3144, 3148, 608, 0, 0, 13856, 13880, 13864, 22264, 564, 8, 0},
//offsets for: /mariadb/10.3.9/bin/mysqld (10.3.9-MariaDB) systemd
{"10.3.9-MariaDB","daeae2feabba6a57dcdaad9a8f359dd9", 14472, 14576, 7128, 8848, 88, 3296, 8, 0, 16, 24, 152, 14676, 8512, 3136, 3144, 3148, 608, 0, 0, 13848, 13872, 13856, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.8/bin/mysqld (10.3.8-MariaDB) systemd
{"10.3.8-MariaDB","6af4074dcdd7ec12d4b0b1681d112a3c", 14472, 14576, 7128, 8848, 88, 3296, 8, 0, 16, 24, 152, 14676, 8512, 3136, 3144, 3148, 608, 0, 0, 13848, 13872, 13856, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.7/bin/mysqld (10.3.7-MariaDB) systemd
{"10.3.7-MariaDB","e7f727deed38f0248503bef0f03f3526", 14472, 14576, 7160, 8880, 88, 3304, 8, 0, 16, 24, 152, 14676, 8544, 3136, 3144, 3148, 640, 0, 0, 13848, 13872, 13856, 22200, 564, 8, 0},
//offsets for: /mariadb/10.3.28/bin/mysqld (10.3.28-MariaDB)
{"10.3.28-MariaDB","dee6e51dac63b5def083325a0a239a8d", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.27/bin/mysqld (10.3.27-MariaDB)
{"10.3.27-MariaDB","eb4ff1d4db8437698e9b7e99f2ca53dc", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.26/bin/mysqld (10.3.26-MariaDB)
{"10.3.26-MariaDB","149b36e6205de106b11b234e83e6e5cc", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.25/bin/mysqld (10.3.25-MariaDB)
{"10.3.25-MariaDB","61b05a3792570e7033bc4a89d3802d52", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.24/bin/mysqld (10.3.24-MariaDB)
{"10.3.24-MariaDB","bfb634b1a733903370173051cad6fe0b", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.23/bin/mysqld (10.3.23-MariaDB)
{"10.3.23-MariaDB","f2c43c0df66bef7745c661c668b6b5b3", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22240, 564, 8, 0},
//offsets for: /mariadb/10.3.22/bin/mysqld (10.3.22-MariaDB)
{"10.3.22-MariaDB","83ea3392ee01ddee0299c9e2cc3f89d0", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22240, 564, 8, 0},
//offsets for: /mariadb/10.3.21/bin/mysqld (10.3.21-MariaDB)
{"10.3.21-MariaDB","492bae727890f1e0f6be1351e1431fe8", 14504, 14608, 7152, 8880, 88, 3328, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.20/bin/mysqld (10.3.20-MariaDB)
{"10.3.20-MariaDB","633321a6951be6da1b76529cbb6ceb05", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22232, 564, 8, 0},
//offsets for: /mariadb/10.3.18/bin/mysqld (10.3.18-MariaDB)
{"10.3.18-MariaDB","7527524154cd162789b098477881b3ba", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22232, 564, 8, 0},
//offsets for: /mariadb/10.3.17/bin/mysqld (10.3.17-MariaDB)
{"10.3.17-MariaDB","fc6a771f03ed86cddb204fe102c9ed6b", 14504, 14608, 7152, 8880, 88, 3320, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22232, 564, 8, 0},
//offsets for: /mariadb/10.3.16/bin/mysqld (10.3.16-MariaDB)
{"10.3.16-MariaDB","4881ba14792ce4fa19c60b086c758d96", 14504, 14608, 7152, 8880, 88, 3312, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22216, 564, 8, 0},
//offsets for: /mariadb/10.3.15/bin/mysqld (10.3.15-MariaDB)
{"10.3.15-MariaDB","5242dbc4c0754140ed8b72fa980f0034", 14504, 14608, 7152, 8880, 88, 3312, 8, 0, 16, 24, 152, 14708, 8536, 2984, 2992, 2996, 608, 0, 0, 13880, 13904, 13888, 22216, 564, 8, 0},
//offsets for: /mariadb/10.3.14/bin/mysqld (10.3.14-MariaDB)
{"10.3.14-MariaDB","558e5eff21530e702c583fd8a633fb78", 14504, 14608, 7152, 8880, 88, 3304, 8, 0, 16, 24, 152, 14708, 8536, 3136, 3144, 3148, 608, 0, 0, 13880, 13904, 13888, 22208, 564, 8, 0},
//offsets for: /mariadb/10.3.13/bin/mysqld (10.3.13-MariaDB)
{"10.3.13-MariaDB","27a83f8d0fb56fa03cc26f5ab458c5c0", 14488, 14592, 7136, 8864, 88, 3304, 8, 0, 16, 24, 152, 14692, 8520, 3136, 3144, 3148, 608, 0, 0, 13864, 13888, 13872, 22208, 564, 8, 0},
//offsets for: /mariadb/10.3.12/bin/mysqld (10.3.12-MariaDB)
{"10.3.12-MariaDB","e6d64f7fe87d62a81c1c2907d68d6585", 14480, 14584, 7136, 8856, 88, 3304, 8, 0, 16, 24, 152, 14684, 8520, 3136, 3144, 3148, 608, 0, 0, 13856, 13880, 13864, 22200, 564, 8, 0},
//offsets for: /mariadb/10.3.11/bin/mysqld (10.3.11-MariaDB)
{"10.3.11-MariaDB","e152c7268f90d1b9b7d5d282c1fb991a", 14480, 14584, 7136, 8856, 88, 3304, 8, 0, 16, 24, 152, 14684, 8520, 3136, 3144, 3148, 608, 0, 0, 13856, 13880, 13864, 22200, 564, 8, 0},
//offsets for: /mariadb/10.3.10/bin/mysqld (10.3.10-MariaDB)
{"10.3.10-MariaDB","bc759d77bf64dd542ddcc63562dc29c0", 14480, 14584, 7136, 8856, 88, 3304, 8, 0, 16, 24, 152, 14684, 8520, 3136, 3144, 3148, 608, 0, 0, 13856, 13880, 13864, 22264, 564, 8, 0},
//offsets for: /mariadb/10.3.9/bin/mysqld (10.3.9-MariaDB)
{"10.3.9-MariaDB","a13ea772d37d0e455ec3ad0d5ac66e7e", 14472, 14576, 7128, 8848, 88, 3296, 8, 0, 16, 24, 152, 14676, 8512, 3136, 3144, 3148, 608, 0, 0, 13848, 13872, 13856, 22248, 564, 8, 0},
//offsets for: /mariadb/10.3.8/bin/mysqld (10.3.8-MariaDB)
{"10.3.8-MariaDB","9f37adbe94a4310e5fe20d7b96e804e3", 14472, 14576, 7128, 8848, 88, 3296, 8, 0, 16, 24, 152, 14676, 8512, 3136, 3144, 3148, 608, 0, 0, 13848, 13872, 13856, 22248, 564, 8, 0},
//offsets for: /mariadb/10.2.36/bin/mysqld (10.2.36-MariaDB)
{"10.2.36-MariaDB","6ac5d544938762b31b4972d099c85933", 13880, 13944, 6672, 8288, 88, 3208, 8, 0, 16, 24, 152, 14044, 8048, 2984, 2992, 2996, 608, 0, 0, 13256, 13280, 13264, 21216, 548, 516},
//offsets for: /mariadb/10.2.35/bin/mysqld (10.2.35-MariaDB)
@@ -796,6 +1205,24 @@ const ThdOffsets thd_offsets_arr[] =
const ThdOffsets thd_offsets_arr[] =
{
/* +++ MYSQL 32 OFFSETS GO HERE +++ */
//offsets for: /mysqlrpm/5.7.39/usr/sbin/mysqld (5.7.39)
{"5.7.39","f78c74f4aad075d98fc0b3868f90d938", 5088, 5116, 2216, 3040, 296, 200, 0, 20, 40, 100, 344, 5204, 2780, 3112, 3116, 3120, 3724, 1152, 4, 4540, 4576, 4560, 9052, 80, 604, 0},
//offsets for: /mysqlrpm/5.7.38/usr/sbin/mysqld (5.7.38)
{"5.7.38","3265006e4248875c229ba7853c8274f4", 5088, 5116, 2216, 3040, 296, 200, 0, 20, 40, 100, 344, 5204, 2780, 3108, 3112, 3116, 3724, 1152, 4, 4540, 4576, 4560, 9052, 80, 604, 0},
//offsets for: /mysqlrpm/8.0.26/usr/sbin/mysqld (8.0.26)
{"8.0.26","39a33a3c2a3f6c076e21fabb10be7ab5", 5668, 5692, 2492, 3636, 320, 0, 0, 20, 40, 100, 368, 5772, 3420, 3652, 3656, 3660, 4324, 928, 16, 5124, 5160, 5144, 8108, 72, 596, 176},
//offsets for: /mysqlrpm/5.7.37/usr/sbin/mysqld (5.7.37)
{"5.7.37","6af07772eef15eb7e47de7749fa429ae", 5088, 5116, 2216, 3040, 296, 200, 0, 20, 40, 100, 344, 5204, 2780, 3108, 3112, 3116, 3724, 1152, 4, 4540, 4576, 4560, 9052, 80, 604, 0},
//offsets for: /mysqlrpm/5.7.36/usr/sbin/mysqld (5.7.36)
{"5.7.36","d6f5b24c443e3c0a340580fdc1eb4879", 5088, 5116, 2216, 3040, 296, 200, 0, 20, 40, 100, 344, 5204, 2780, 3108, 3112, 3116, 3724, 1152, 4, 4540, 4576, 4560, 9052, 80, 604, 0},
//offsets for: /mysqlrpm/5.7.35/usr/sbin/mysqld (5.7.35)
{"5.7.35","b9817b3dec3749ea8cdec52ab6eb2dea", 5088, 5116, 2216, 3040, 296, 200, 0, 20, 40, 100, 344, 5204, 2780, 3108, 3112, 3116, 3724, 1152, 4, 4540, 4576, 4560, 9052, 80, 604, 0},
//offsets for: /mysqlrpm/8.0.25/usr/sbin/mysqld (8.0.25)
{"8.0.25","25ee4d67323c6eb45e7f01cee4a28ed2", 5680, 5704, 2496, 3640, 328, 0, 0, 20, 40, 100, 376, 5788, 3428, 3652, 3656, 3660, 4336, 940, 16, 5136, 5172, 5156, 8136, 72, 596, 172},
//offsets for: /mysqlrpm/8.0.24/usr/sbin/mysqld (8.0.24)
{"8.0.24","95db964c04cd7c01839b5009cca63674", 5680, 5704, 2496, 3640, 328, 0, 0, 20, 40, 100, 376, 5788, 3428, 3652, 3656, 3660, 4336, 940, 16, 5136, 5172, 5156, 8136, 72, 596, 172},
//offsets for: /mysqlrpm/5.7.34/usr/sbin/mysqld (5.7.34)
{"5.7.34","12a89d95687d6fb261dfec2451a1bb5b", 5088, 5116, 2216, 3040, 296, 200, 0, 20, 40, 100, 344, 5204, 2780, 3108, 3112, 3116, 3724, 1152, 4, 4540, 4576, 4560, 9052, 80, 604, 0},
//offsets for: /mysqlrpm/5.6.51/usr/sbin/mysqld (5.6.51)
{"5.6.51","92b12b9c5531241950c85984b2a9f689", 4680, 4708, 2664, 3056, 36, 1748, 60, 0, 20, 64, 72, 4780, 2984, 2268, 2272, 2276, 348, 0, 0, 4208, 4232, 4216, 8664, 548, 516},
//offsets for: /mysqlrpm/5.7.33/usr/sbin/mysqld (5.7.33)
@@ -1117,6 +1544,18 @@ const ThdOffsets thd_offsets_arr[] =
const ThdOffsets thd_offsets_arr[] =
{
/* +++ MARIADB 32 OFFSETS GO HERE +++ */
//offsets for: /mariadb/10.2.44/bin/mysqld (10.2.44-MariaDB)
{"10.2.44-MariaDB","98c6e3588f979348b6fff89044047f8b", 8620, 8656, 3968, 5436, 44, 2044, 4, 0, 8, 12, 84, 8740, 5296, 2604, 2608, 2612, 384, 0, 0, 8144, 8168, 8152, 13476, 548, 516, 0},
//offsets for: /mariadb/10.2.43/bin/mysqld (10.2.43-MariaDB)
{"10.2.43-MariaDB","6fc47e535a86f0b6864a461eb817e2f7", 8612, 8648, 3960, 5428, 44, 2044, 4, 0, 8, 12, 84, 8732, 5288, 2604, 2608, 2612, 376, 0, 0, 8136, 8160, 8144, 13476, 548, 516, 0},
//offsets for: /mariadb/10.2.41/bin/mysqld (10.2.41-MariaDB)
{"10.2.41-MariaDB","918d2a72191fd6d43114aceffd859edc", 8612, 8648, 3960, 5428, 44, 2044, 4, 0, 8, 12, 84, 8732, 5288, 2604, 2608, 2612, 376, 0, 0, 8136, 8160, 8144, 13476, 548, 516, 0},
//offsets for: /mariadb/10.2.40/bin/mysqld (10.2.40-MariaDB)
{"10.2.40-MariaDB","a7d9e43e49e5ab0a94d61dd4e8220707", 8612, 8648, 3960, 5428, 44, 2044, 4, 0, 8, 12, 84, 8732, 5288, 2604, 2608, 2612, 376, 0, 0, 8136, 8160, 8144, 13476, 548, 516, 0},
//offsets for: /mariadb/10.2.39/bin/mysqld (10.2.39-MariaDB)
{"10.2.39-MariaDB","3f4aa4d7056f5a7bbac1cdbd9a8bccee", 8612, 8648, 3960, 5428, 44, 2044, 4, 0, 8, 12, 84, 8732, 5288, 2604, 2608, 2612, 376, 0, 0, 8136, 8160, 8144, 13476, 548, 516, 0},
//offsets for: /mariadb/10.2.38/bin/mysqld (10.2.38-MariaDB)
{"10.2.38-MariaDB","277222917404c0cc7ce14d874e023135", 8612, 8648, 3960, 5428, 44, 2032, 4, 0, 8, 12, 84, 8732, 5288, 2604, 2608, 2612, 376, 0, 0, 8136, 8160, 8144, 13464, 548, 516, 0},
//offsets for: /mariadb/10.2.37/bin/mysqld (10.2.37-MariaDB)
{"10.2.37-MariaDB","f09c2b85d1f8989f71c7bebbc4b6088c", 8612, 8648, 3960, 5428, 44, 2032, 4, 0, 8, 12, 84, 8732, 5288, 2604, 2608, 2612, 376, 0, 0, 8136, 8160, 8144, 13464, 548, 516},
//offsets for: /mariadb/10.2.36/bin/mysqld (10.2.36-MariaDB)

View File

@@ -855,7 +855,12 @@ static struct st_mysql_audit audit_plugin =
#if defined(MARIADB_BASE_VERSION) || MYSQL_VERSION_ID < 80000
extern void log_slow_statement(THD *thd);
#endif
#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 100603
extern int mysql_execute_command(THD *thd, bool is_called_from_prepared_stmt);
#else
extern int mysql_execute_command(THD *thd);
#endif
#if defined(MARIADB_BASE_VERSION)
extern void end_connection(THD *thd);
@@ -918,7 +923,12 @@ void remove_hot_functions()
trampoline_check_table_access_size=0;
trampoline_check_table_access_saved_code.size = 0;
#if defined(MARIADB_BASE_VERSION) || MYSQL_VERSION_ID < 50709
#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 100603
target_function = (void*)
(int (*)(THD *thd, bool is_called_from_prepared_stmt)) &mysql_execute_command;
#elif defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID < 100603
target_function = (void*) mysql_execute_command;
#elif MYSQL_VERSION_ID < 50709
target_function = (void*) mysql_execute_command;
#else
target_function = (void*)
@@ -1175,6 +1185,7 @@ static bool parse_thd_offsets_string (char *poffsets_string)
if ((size_t)pOffset- (size_t)&Audit_formatter::thd_offsets < sizeof (Audit_formatter::thd_offsets))
{
sql_print_error("%s Failed parsing audit_offsets: not all offsets specified. This may happen if you used an old version of offset-extract.sh script.", log_prefix);
sql_print_error("%s Got %zu quantity of offsets, but expected more", log_prefix, i);
return false;
}
return true;
@@ -1235,6 +1246,25 @@ static bool validate_offsets(const ThdOffsets *offset)
#if !defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 80000
PSI_mutex_key key_LOCK_thd_query_validate=99999;
mysql_mutex_init(key_LOCK_thd_query_validate, &thd->LOCK_thd_query, MY_MUTEX_INIT_FAST);
#ifdef _DEBUG
my_mutex_t *mp = &thd->LOCK_thd_query.m_mutex;
if (mp == nullptr)
{
sql_print_information(
"%s validate offsets - mutex for query string is null", log_prefix);
}
else if (mp->m_u.m_safe_ptr != nullptr)
{
sql_print_information(
"%s validate offsets - mutex for query string is safe pointer", log_prefix);
}
else if (mp->m_u.m_safe_ptr == nullptr)
{
sql_print_information(
"%s validate offsets - mutex for query string is native pointer", log_prefix);
}
#endif
#endif
char buffer[2048] = {0};
thd_security_context(thd, buffer, 2048, 1000);
@@ -1371,7 +1401,7 @@ static int setup_offsets()
if (parse_thd_offsets_string(offsets_string))
{
sql_print_information ("%s setup_offsets Audit_formatter::thd_offsets values: %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu", log_prefix,
sql_print_information ("%s setup_offsets Audit_formatter::thd_offsets values: %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu", log_prefix,
Audit_formatter::thd_offsets.query_id,
Audit_formatter::thd_offsets.thread_id,
Audit_formatter::thd_offsets.main_security_ctx,
@@ -1396,7 +1426,8 @@ static int setup_offsets()
Audit_formatter::thd_offsets.row_count_func,
Audit_formatter::thd_offsets.stmt_da,
Audit_formatter::thd_offsets.da_status,
Audit_formatter::thd_offsets.da_sql_errno
Audit_formatter::thd_offsets.da_sql_errno,
Audit_formatter::thd_offsets.view_tables
);
if (! validate_offsets(&Audit_formatter::thd_offsets))
@@ -1527,7 +1558,7 @@ static int setup_offsets()
if (validate_offsets(&decoffsets))
{
Audit_formatter::thd_offsets = decoffsets;
sql_print_information("%s Using decrement (%zu) offsets from offset version: %s (%s) values: %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu",
sql_print_information("%s Using decrement (%zu) offsets from offset version: %s (%s) values: %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu",
log_prefix, dec, offset->version, offset->md5digest,
Audit_formatter::thd_offsets.query_id,
Audit_formatter::thd_offsets.thread_id,
@@ -1539,6 +1570,7 @@ static int setup_offsets()
Audit_formatter::thd_offsets.sec_ctx_host,
Audit_formatter::thd_offsets.sec_ctx_ip,
Audit_formatter::thd_offsets.sec_ctx_priv_user,
Audit_formatter::thd_offsets.db,
Audit_formatter::thd_offsets.killed,
Audit_formatter::thd_offsets.client_capabilities,
Audit_formatter::thd_offsets.pfs_connect_attrs,
@@ -1552,7 +1584,8 @@ static int setup_offsets()
Audit_formatter::thd_offsets.row_count_func,
Audit_formatter::thd_offsets.stmt_da,
Audit_formatter::thd_offsets.da_status,
Audit_formatter::thd_offsets.da_sql_errno
Audit_formatter::thd_offsets.da_sql_errno,
Audit_formatter::thd_offsets.view_tables
);
DBUG_RETURN(0);
@@ -1570,7 +1603,7 @@ static int setup_offsets()
if (validate_offsets(&incoffsets))
{
Audit_formatter::thd_offsets = incoffsets;
sql_print_information("%s Using increment (%zu) offsets from offset version: %s (%s) values: %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu",
sql_print_information("%s Using increment (%zu) offsets from offset version: %s (%s) values: %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu %zu",
log_prefix, inc, offset->version, offset->md5digest,
Audit_formatter::thd_offsets.query_id,
Audit_formatter::thd_offsets.thread_id,
@@ -1582,6 +1615,7 @@ static int setup_offsets()
Audit_formatter::thd_offsets.sec_ctx_host,
Audit_formatter::thd_offsets.sec_ctx_ip,
Audit_formatter::thd_offsets.sec_ctx_priv_user,
Audit_formatter::thd_offsets.db,
Audit_formatter::thd_offsets.killed,
Audit_formatter::thd_offsets.client_capabilities,
Audit_formatter::thd_offsets.pfs_connect_attrs,
@@ -1595,7 +1629,8 @@ static int setup_offsets()
Audit_formatter::thd_offsets.row_count_func,
Audit_formatter::thd_offsets.stmt_da,
Audit_formatter::thd_offsets.da_status,
Audit_formatter::thd_offsets.da_sql_errno
Audit_formatter::thd_offsets.da_sql_errno,
Audit_formatter::thd_offsets.view_tables
);
DBUG_RETURN(0);
}
@@ -1642,7 +1677,11 @@ const char *retrieve_command(THD *thd, bool &is_sql_cmd)
if (! cmd)
{
#if defined(MARIADB_BASE_VERSION) || MYSQL_VERSION_ID < 80000
cmd = command_name[command].str;
#else
cmd = compat::str_session(command);
#endif
}
#if MYSQL_VERSION_ID < 50600
@@ -2009,6 +2048,8 @@ static void record_objs_string_update_extended(THD *thd, SYS_VAR *var, void *tgt
bool (*compat::_vio_socket_connect)(MYSQL_VIO vio, struct sockaddr *addr, socklen_t len, int timeout);
bool (*compat::_vio_socket_connect_80016)(MYSQL_VIO vio, struct sockaddr *addr, socklen_t len, bool nonblocking, int timeout);
bool (*compat::_vio_socket_connect_80020)(MYSQL_VIO vio, struct sockaddr *addr, socklen_t len, bool nonblocking, int timeout, bool *connect_done);
const std::string & (*compat::_str_session_80026)(int cmd);
const LEX_STRING *compat::_command_name;
#elif defined(HAVE_SESS_CONNECT_ATTRS) && defined(MARIADB_BASE_VERSION)
compat::pfs_thread_t compat::_pfs_thread_get_current_thread;
PSI_v1* compat::_psi_interface;
@@ -2190,7 +2231,12 @@ static int audit_plugin_init(void *p)
// hot patch stuff
void * target_function = NULL;
#if defined(MARIADB_BASE_VERSION) || MYSQL_VERSION_ID < 50709
#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 100603
target_function = (void*)
(int (*)(THD *thd, bool is_called_from_prepared_stmt)) &mysql_execute_command;
#elif defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID < 100603
target_function = (void*) mysql_execute_command;
#elif MYSQL_VERSION_ID < 50709
target_function = (void*) mysql_execute_command;
#else
target_function = (void*)
@@ -2567,7 +2613,7 @@ mysql_declare_plugin(audit_plugin)
plugin_type,
&audit_plugin,
PLUGIN_NAME,
"McAfee Inc",
"Musarubra US LLC",
"AUDIT plugin, creates a file mysql-audit.log to log activity",
PLUGIN_LICENSE_GPL,
audit_plugin_init, /* Plugin Init */
@@ -2585,13 +2631,13 @@ mysql_declare_plugin(audit_plugin)
}
mysql_declare_plugin_end;
#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 100504
#if defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 100307
maria_declare_plugin(audit_plugin)
{
plugin_type, /* the plugin type (see include/mysql/plugin.h) */
&audit_plugin, /* pointer to type-specific plugin descriptor */
PLUGIN_NAME, /* plugin name */
"McAfee Inc", /* plugin author */
"Musarubra US LLC", /* plugin author */
"AUDIT plugin, creates a file mysql-audit.log to log activity", /* the plugin description */
PLUGIN_LICENSE_GPL, /* the plugin license (see include/mysql/plugin.h) */
audit_plugin_init, /* Pointer to plugin initialization function */