Today CVE-2020-7221 was publicly discussed on oss-sec [1]. MariaDB upstream had not mentioned this CVE in their last release notes. The CVE is related to auth-pam and the possibility of a local mariadb to root user exploit in the mysql_install_db script. Upstream has made amendments to the script, but according to the oss-sec posts the folder permissions were not updated as they should have been. In OpenWrt the script mysql_install_db is actually patched to never run the commands in question. This has been this way since MariaDB 10.4 was made available. Still, the directory permissions set by the postinstall script are too lax. To quote the discoverer of the issue, Matthias Gerstner from Suse, they exhibit "the dangerous situation of a setuid-root binary residing in a directory owned by an unprivileged user". This commit fixes this by changing the permissions to the following: root:mariadb 0750 /usr/lib/mariadb/plugin/auth_pam_tool_dir This way the setuid-root binary is only available to root and the mariadb user, while at the same time the mariadb user has no ownership of the directory. [1] https://seclists.org/oss-sec/2020/q1/55 Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
598 lines
19 KiB
Makefile
598 lines
19 KiB
Makefile
#
|
||
# Copyright (C) 2018 Sebastian Kemper <sebastian_ml@gmx.net>
|
||
#
|
||
# This is free software, licensed under the GNU General Public License v2.
|
||
# See /LICENSE for more information.
|
||
#
|
||
|
||
include $(TOPDIR)/rules.mk
|
||
|
||
PKG_NAME:=mariadb
|
||
PKG_VERSION:=10.4.12
|
||
PKG_RELEASE:=2
|
||
|
||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||
PKG_SOURCE_URL := \
|
||
https://mirror.netcologne.de/mariadb/$(PKG_NAME)-$(PKG_VERSION)/source \
|
||
https://mirror.lstn.net/mariadb/$(PKG_NAME)-$(PKG_VERSION)/source \
|
||
https://ftp.yz.yamagata-u.ac.jp/pub/dbms/mariadb/$(PKG_NAME)-$(PKG_VERSION)/source \
|
||
https://downloads.mariadb.org/interstitial/$(PKG_NAME)-$(PKG_VERSION)/source
|
||
|
||
PKG_HASH:=fef1e1d38aa253dd8a51006bd15aad184912fce31c446bb69434fcde735aa208
|
||
PKG_MAINTAINER:=Sebastian Kemper <sebastian_ml@gmx.net>
|
||
PKG_LICENSE:=GPL-2.0
|
||
PKG_LICENSE_FILES:=COPYING THIRDPARTY
|
||
|
||
PKG_CPE_ID:=cpe:/a:mariadb:mariadb
|
||
|
||
HOST_BUILD_PARALLEL:=1
|
||
PKG_BUILD_PARALLEL:=1
|
||
PKG_USE_MIPS16:=0
|
||
|
||
HOST_BUILD_DEPENDS:=libxml2/host
|
||
# Without libevent2 tests/async_queries sporadically fails on the bots
|
||
PKG_BUILD_DEPENDS:=libevent2 mariadb/host
|
||
|
||
CMAKE_INSTALL:=1
|
||
|
||
CONF_DIR:=/etc/mysql
|
||
PLUGIN_DIR:=/usr/lib/mariadb/plugin
|
||
SHARE_DIR:=/usr/share/mariadb
|
||
|
||
MARIADB_SOCKET=/var/run/mysqld/mysqld.sock
|
||
|
||
MARIADB_DISABLE_ENGINES := \
|
||
cassandra \
|
||
example \
|
||
mroonga \
|
||
oqgraph \
|
||
rocksdb \
|
||
test_sql_discovery \
|
||
tokudb
|
||
|
||
MARIADB_DISABLE_PLUGINS := \
|
||
audit_null \
|
||
auth_examples \
|
||
aws_key_management \
|
||
cracklib_password_check \
|
||
daemon_example \
|
||
debug_key_management \
|
||
example_key_management \
|
||
fulltext \
|
||
versioning
|
||
|
||
MARIADB_SERVER_PLUGINS := \
|
||
auth_ed25519 \
|
||
auth_gssapi \
|
||
auth_pam \
|
||
auth_pam_v1 \
|
||
disks \
|
||
feedback \
|
||
file_key_management \
|
||
ha_archive \
|
||
ha_blackhole \
|
||
ha_connect \
|
||
ha_federated \
|
||
ha_federatedx \
|
||
ha_sphinx \
|
||
ha_spider \
|
||
handlersocket \
|
||
locales \
|
||
metadata_lock_info \
|
||
query_cache_info \
|
||
query_response_time \
|
||
server_audit \
|
||
simple_password_check \
|
||
sql_errlog \
|
||
wsrep_info
|
||
|
||
PKG_CONFIG_DEPENDS := \
|
||
$(patsubst %,CONFIG_PACKAGE_$(PKG_NAME)-server-plugin-%,$(subst _,-,$(MARIADB_SERVER_PLUGINS))) \
|
||
CONFIG_PACKAGE_mariadb-server
|
||
|
||
plugin-auth_ed25519 := PLUGIN_AUTH_ED25519
|
||
plugin-auth_gssapi := PLUGIN_AUTH_GSSAPI
|
||
plugin-auth_pam := PLUGIN_AUTH_PAM
|
||
plugin-auth_pam_v1 := PLUGIN_AUTH_PAM_V1
|
||
plugin-disks := PLUGIN_DISKS
|
||
plugin-feedback := PLUGIN_FEEDBACK
|
||
plugin-file_key_management := PLUGIN_FILE_KEY_MANAGEMENT
|
||
plugin-ha_archive := PLUGIN_ARCHIVE
|
||
plugin-ha_blackhole := PLUGIN_BLACKHOLE
|
||
plugin-ha_connect := PLUGIN_CONNECT
|
||
plugin-ha_federated := PLUGIN_FEDERATED
|
||
plugin-ha_federatedx := PLUGIN_FEDERATEDX
|
||
plugin-ha_sphinx := PLUGIN_SPHINX
|
||
plugin-ha_spider := PLUGIN_SPIDER
|
||
plugin-handlersocket := PLUGIN_HANDLERSOCKET
|
||
plugin-locales := PLUGIN_LOCALES
|
||
plugin-metadata_lock_info := PLUGIN_METADATA_LOCK_INFO
|
||
plugin-query_cache_info := PLUGIN_QUERY_CACHE_INFO
|
||
plugin-query_response_time := PLUGIN_QUERY_RESPONSE_TIME
|
||
plugin-server_audit := PLUGIN_SERVER_AUDIT
|
||
plugin-simple_password_check := PLUGIN_SIMPLE_PASSWORD_CHECK
|
||
plugin-sql_errlog := PLUGIN_SQL_ERRLOG
|
||
plugin-wsrep_info := PLUGIN_WSREP_INFO
|
||
|
||
MARIADB_CLIENT := \
|
||
mysql \
|
||
mysqlcheck
|
||
|
||
MARIADB_CLIENT_EXTRA := \
|
||
mysql_find_rows \
|
||
mysql_waitpid \
|
||
mysqlaccess \
|
||
mysqladmin \
|
||
mysqldump \
|
||
mysqlimport \
|
||
mysqlshow \
|
||
mysqlslap \
|
||
mytop
|
||
|
||
MARIADB_SERVER := \
|
||
innochecksum \
|
||
my_print_defaults \
|
||
mysql_install_db \
|
||
mysql_upgrade \
|
||
mysqld
|
||
|
||
MARIADB_SERVER_EXTRA := \
|
||
aria_chk \
|
||
aria_dump_log \
|
||
aria_ftdump \
|
||
aria_pack \
|
||
aria_read_log \
|
||
mariabackup \
|
||
msql2mysql \
|
||
myisam_ftdump \
|
||
myisamchk \
|
||
myisamlog \
|
||
myisampack \
|
||
mysql_convert_table_format \
|
||
mysql_fix_extensions \
|
||
mysql_plugin \
|
||
mysql_secure_installation \
|
||
mysql_setpermission \
|
||
mysql_tzinfo_to_sql \
|
||
mysqlbinlog \
|
||
mysqld_multi \
|
||
mysqldumpslow \
|
||
mysqlhotcopy \
|
||
perror \
|
||
replace \
|
||
resolve_stack_dump \
|
||
wsrep_sst_mariabackup \
|
||
wsrep_sst_mysqldump \
|
||
wsrep_sst_rsync \
|
||
wsrep_sst_rsync_wan
|
||
|
||
include $(INCLUDE_DIR)/package.mk
|
||
include $(INCLUDE_DIR)/host-build.mk
|
||
include $(INCLUDE_DIR)/cmake.mk
|
||
include $(INCLUDE_DIR)/nls.mk
|
||
|
||
MARIADB_COMMON_DEPENDS := \
|
||
$(ICONV_DEPENDS) \
|
||
+libatomic \
|
||
+libopenssl \
|
||
+libstdcpp \
|
||
+zlib \
|
||
@!USE_UCLIBC
|
||
|
||
# Pass CPPFLAGS in the CFLAGS as otherwise the build system will
|
||
# ignore them.
|
||
TARGET_CFLAGS+=$(TARGET_CPPFLAGS)
|
||
|
||
define Package/mariadb/disable/engine
|
||
echo > $(1)/storage/$(2)/CMakeLists.txt
|
||
endef
|
||
|
||
define Package/mariadb/disable/plugin
|
||
echo > $(1)/plugin/$(2)/CMakeLists.txt
|
||
endef
|
||
|
||
define Package/mariadb/install/bin
|
||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(2) $(1)/usr/bin
|
||
cd "$(PKG_INSTALL_DIR)/usr/bin"; find . -maxdepth 1 -type l \
|
||
-regex './$(subst mysql,mariadb[-]*,$(subst _,-,$(2)))' \
|
||
| xargs -I{} $(CP) {} "$(1)/usr/bin"
|
||
endef
|
||
|
||
define Package/mariadb/install/plugin
|
||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)$(PLUGIN_DIR)/$(2).so $(1)$(PLUGIN_DIR)
|
||
endef
|
||
|
||
define Package/mariadb/description/Default
|
||
MariaDB is a very fast and robust SQL database server.
|
||
endef
|
||
|
||
define Package/mariadb/Default
|
||
SECTION:=utils
|
||
CATEGORY:=Utilities
|
||
URL:=https://mariadb.org/
|
||
SUBMENU:=Database
|
||
endef
|
||
|
||
define Package/mariadb-client
|
||
$(call Package/mariadb/Default)
|
||
TITLE:=MariaDB database client
|
||
MENU:=1
|
||
DEPENDS:=mariadb-client-base
|
||
endef
|
||
|
||
define Package/mariadb-client/description
|
||
$(call Package/mariadb/description/Default)
|
||
|
||
This package includes the following core client binaries:
|
||
|
||
$(subst $(space),$(newline),$(MARIADB_CLIENT))
|
||
|
||
endef
|
||
|
||
define Package/mariadb-client-base
|
||
$(call Package/mariadb/Default)
|
||
TITLE:=MariaDB database client base
|
||
DEPENDS:=mariadb-common \
|
||
$(MARIADB_COMMON_DEPENDS) \
|
||
+libedit
|
||
endef
|
||
|
||
define Package/mariadb-client-base/conffiles
|
||
$(CONF_DIR)/conf.d/50-mysql-clients.cnf
|
||
endef
|
||
|
||
define Package/mariadb-client-base/description
|
||
$(call Package/mariadb/description/Default)
|
||
|
||
This package provides the foundation for mariadb-client. It installs the
|
||
configuration and the dependencies.
|
||
|
||
endef
|
||
|
||
define Package/mariadb-client-extra
|
||
$(call Package/mariadb/Default)
|
||
TITLE:=MariaDB database client extra
|
||
DEPENDS:=mariadb-client
|
||
endef
|
||
|
||
define Package/mariadb-client-extra/description
|
||
$(call Package/mariadb/description/Default)
|
||
|
||
This package includes the following extra client binaries:
|
||
|
||
$(subst $(space),$(newline),$(MARIADB_CLIENT_EXTRA))
|
||
|
||
endef
|
||
|
||
define Package/mariadb-server
|
||
$(call Package/mariadb/Default)
|
||
DEPENDS:=mariadb-server-base
|
||
TITLE:=MariaDB database server
|
||
MENU:=1
|
||
PROVIDES:=mysql-server
|
||
endef
|
||
|
||
define Package/mariadb-server/description
|
||
$(call Package/mariadb/description/Default)
|
||
|
||
This package includes the following core server binaries:
|
||
|
||
$(subst $(space),$(newline),$(MARIADB_SERVER))
|
||
|
||
endef
|
||
|
||
define Package/mariadb-server-base
|
||
$(call Package/mariadb/Default)
|
||
DEPENDS:=mariadb-common \
|
||
$(MARIADB_COMMON_DEPENDS) \
|
||
+libaio \
|
||
+liblzma \
|
||
+libpcre \
|
||
+resolveip
|
||
TITLE:=MariaDB database server base
|
||
USERID:=mariadb=376:mariadb=376
|
||
endef
|
||
|
||
define Package/mariadb-server-base/conffiles
|
||
$(CONF_DIR)/conf.d/50-server.cnf
|
||
$(CONF_DIR)/conf.d/60-galera.cnf
|
||
/etc/config/mysqld
|
||
endef
|
||
|
||
define Package/mariadb-server-base/description
|
||
$(call Package/mariadb/description/Default)
|
||
|
||
This package provides the foundation for mariadb-server. It installs the
|
||
init script, support files (configuration etc.), the user "mariadb" and
|
||
the dependencies.
|
||
|
||
endef
|
||
|
||
define Package/mariadb-server-extra
|
||
$(call Package/mariadb/Default)
|
||
TITLE:=MariaDB database server extra
|
||
DEPENDS:=mariadb-server
|
||
endef
|
||
|
||
define Package/mariadb-server-extra/description
|
||
$(call Package/mariadb/description/Default)
|
||
|
||
This package includes the following extra server binaries:
|
||
|
||
$(subst $(space),$(newline),$(MARIADB_SERVER_EXTRA))
|
||
|
||
endef
|
||
|
||
# We won't need unit tests
|
||
CMAKE_OPTIONS += -DWITH_UNIT_TESTS=0
|
||
|
||
# This value is determined automatically during straight compile by compiling
|
||
# and running a test code. You cannot do that during cross-compile. However the
|
||
# stack grows downward in most if not all modern systems. The only exception
|
||
# according to buildroot is PA-RISC which is not supported by OpenWrt as far as
|
||
# I know. Therefore it makes sense to hardcode the value. If an arch is added
|
||
# the stack of which grows up one should expect unpredictable behavior at run
|
||
# time.
|
||
CMAKE_OPTIONS += -DSTACK_DIRECTION=-1
|
||
|
||
# Make it explicit that we are cross-compiling
|
||
CMAKE_OPTIONS += -DCMAKE_CROSSCOMPILING=1
|
||
|
||
# Explicitly disable dtrace to avoid detection of a host version
|
||
CMAKE_OPTIONS += -DENABLE_DTRACE=0
|
||
|
||
# Prevent MariaDB from messing with OpenWrt's C(XX)FLAGS
|
||
CMAKE_OPTIONS += -DSECURITY_HARDENED=OFF
|
||
|
||
ifeq ($(CONFIG_PACKAGE_mariadb-server),)
|
||
CMAKE_OPTIONS += -DWITHOUT_SERVER=ON
|
||
else
|
||
# Enable the auth_socket plugin and let unix user root access MariaDB without a
|
||
# separate password.
|
||
CMAKE_OPTIONS += -DWITHOUT_SERVER=OFF -DPLUGIN_AUTH_SOCKET=STATIC
|
||
endif
|
||
|
||
CMAKE_OPTIONS += \
|
||
-DCONNECT_WITH_JDBC=NO \
|
||
-DCONNECT_WITH_LIBXML2=system \
|
||
-DCONNECT_WITH_MONGO=NO \
|
||
-DCONNECT_WITH_ODBC=NO \
|
||
-DDISABLE_SHARED=NO \
|
||
-DENABLED_PROFILING=OFF \
|
||
-DENABLE_STATIC_LIBS=OFF \
|
||
-DINSTALL_DOCDIR=share/doc/mariadb \
|
||
-DINSTALL_DOCREADMEDIR=share/doc/mariadb \
|
||
-DINSTALL_INFODIR=share/info \
|
||
-DINSTALL_MANDIR=share/man \
|
||
-DINSTALL_MYSQLSHAREDIR=share/mariadb \
|
||
-DINSTALL_MYSQLTESTDIR="" \
|
||
-DINSTALL_PLUGINDIR=lib/mariadb/plugin \
|
||
-DINSTALL_SBINDIR=bin \
|
||
-DINSTALL_SCRIPTDIR=bin \
|
||
-DINSTALL_SQLBENCHDIR="" \
|
||
-DINSTALL_SUPPORTFILESDIR=share/mariadb \
|
||
-DINSTALL_UNIX_ADDRDIR=$(MARIADB_SOCKET) \
|
||
-DMYSQL_DATADIR=/var/lib/mysql \
|
||
-DMYSQL_UNIX_ADDR=$(MARIADB_SOCKET) \
|
||
-DSKIP_TESTS=ON \
|
||
-DWITH_DEBUG=OFF \
|
||
-DWITH_EMBEDDED_SERVER=OFF \
|
||
-DWITH_INNODB_BZIP2=OFF \
|
||
-DWITH_INNODB_LZ4=OFF \
|
||
-DWITH_INNODB_LZMA=ON \
|
||
-DWITH_INNODB_LZO=OFF \
|
||
-DWITH_INNODB_SNAPPY=OFF \
|
||
-DWITH_JEMALLOC=OFF \
|
||
-DWITH_LIBARCHIVE=OFF \
|
||
-DWITH_LIBWRAP=OFF \
|
||
-DWITH_MARIABACKUP=ON \
|
||
-DWITH_NUMA=OFF \
|
||
-DWITH_PCRE=system \
|
||
-DWITH_SAFEMALLOC=OFF \
|
||
-DWITH_SSL=system \
|
||
-DWITH_SYSTEMD=no \
|
||
-DWITH_VALGRIND=OFF \
|
||
-DWITH_ZLIB=system
|
||
|
||
# Help MariaDB find the correct libiconv.
|
||
# nls.mk sets it up so that with CONFIG_BUILD_NLS libiconv-full would be used,
|
||
# otherwise libiconv-stub (independent of the selected libc). MariaDB needs a
|
||
# leg up to find/pick the right lib.
|
||
CMAKE_OPTIONS += \
|
||
-DICONV_INCLUDE_DIR=$(ICONV_PREFIX)/include \
|
||
-DICONV_LIBRARIES=$(ICONV_PREFIX)/lib/libiconv.$(if $(CONFIG_BUILD_NLS),so,a)
|
||
|
||
CMAKE_OPTIONS += \
|
||
$(foreach p,$(MARIADB_SERVER_PLUGINS),-D$(plugin-$(p))=$(if $(CONFIG_PACKAGE_$(PKG_NAME)-server-plugin-$(subst _,-,$(p))),DYNAMIC,NO))
|
||
|
||
# Disable some client library plugins
|
||
CMAKE_OPTIONS += \
|
||
-DCLIENT_PLUGIN_AUTH_GSSAPI_CLIENT=OFF \
|
||
-DCLIENT_PLUGIN_REMOTE_IO=OFF
|
||
|
||
# Set CMAKE_FIND_ROOT_PATH_MODE_INCLUDE and CMAKE_FIND_ROOT_PATH_MODE_LIBRARY
|
||
# to BOTH as otherwise the host build will not find some required dependencies
|
||
# installed on the host machine, like ncurses.
|
||
#
|
||
# Add "$(STAGING_DIR_HOSTPKG)/lib" to the RPATH of the host helpers,
|
||
# otherwise they might not find the location of a library at run time.
|
||
CMAKE_HOST_OPTIONS += \
|
||
-DCMAKE_BUILD_WITH_INSTALL_RPATH=TRUE \
|
||
-DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=BOTH \
|
||
-DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=BOTH \
|
||
-DCMAKE_INSTALL_RPATH="$(STAGING_DIR_HOSTPKG)/lib" \
|
||
-DCMAKE_SKIP_RPATH=FALSE \
|
||
-DWITHOUT_SERVER=OFF
|
||
|
||
# Some helpers must be compiled for host in order to crosscompile MariaDB for
|
||
# the target. They are then included by import_executables.cmake which is
|
||
# generated during the build of the host helpers. It is not necessary to build
|
||
# the whole host package, only the "import_executables" target.
|
||
# -DIMPORT_EXECUTABLES=$(HOST_BUILD_DIR)/import_executables.cmake
|
||
# must then be passed to cmake during target build.
|
||
# See also https://mariadb.com/kb/en/mariadb/cross-compiling-mariadb/
|
||
|
||
CMAKE_OPTIONS += -DIMPORT_EXECUTABLES=$(STAGING_DIR_HOSTPKG)/share/mariadb/import_executables.cmake
|
||
|
||
# Disable some engines/plugins here as well - decreases the number of cmake checks.
|
||
define Host/Prepare
|
||
$(call Host/Prepare/Default)
|
||
$(foreach e,$(MARIADB_DISABLE_ENGINES),$(call Package/mariadb/disable/engine,$(HOST_BUILD_DIR),$(e));)
|
||
$(foreach p,$(MARIADB_DISABLE_PLUGINS),$(call Package/mariadb/disable/plugin,$(HOST_BUILD_DIR),$(p));)
|
||
endef
|
||
|
||
define Host/Compile
|
||
$(call Host/Compile/Default,import_executables)
|
||
endef
|
||
|
||
define Host/Install
|
||
$(SED) 's|$(HOST_BUILD_DIR)|$(STAGING_DIR_HOSTPKG)/share/mariadb|' $(HOST_BUILD_DIR)/import_executables.cmake
|
||
$(INSTALL_DIR) $(1)/share/mariadb/{dbug,extra,scripts,sql}
|
||
$(INSTALL_BIN) $(HOST_BUILD_DIR)/dbug/factorial $(1)/share/mariadb/dbug
|
||
$(INSTALL_BIN) $(HOST_BUILD_DIR)/extra/comp_err $(1)/share/mariadb/extra
|
||
$(INSTALL_BIN) $(HOST_BUILD_DIR)/scripts/comp_sql $(1)/share/mariadb/scripts
|
||
$(INSTALL_BIN) $(HOST_BUILD_DIR)/sql/{gen_lex_hash,gen_lex_token} $(1)/share/mariadb/sql
|
||
$(INSTALL_DATA) $(HOST_BUILD_DIR)/import_executables.cmake $(1)/share/mariadb
|
||
endef
|
||
|
||
# LIBICONV_PLUG is used in GNU's libiconv for redefinition of exports [e.g.
|
||
# from libiconv_open() to iconv_open()]. But in OpenWrt this variable is not set
|
||
# when building libiconv-full. So when MariaDB sets LIBICONV_PLUG it expects
|
||
# iconv_open() to be available for example, which is not the case - only
|
||
# libiconv_open() is. To address this prevent the variable from being set.
|
||
# libiconv-stub does not use this variable, so there is no harm in always doing
|
||
# this.
|
||
|
||
define Build/Prepare
|
||
$(call Build/Prepare/Default)
|
||
$(SED) '/ADD_DEFINITIONS(-DLIBICONV_PLUG)/d' $(PKG_BUILD_DIR)/libmariadb/libmariadb/CMakeLists.txt
|
||
$(foreach e,$(MARIADB_DISABLE_ENGINES),$(call Package/mariadb/disable/engine,$(PKG_BUILD_DIR),$(e));)
|
||
$(foreach p,$(MARIADB_DISABLE_PLUGINS),$(call Package/mariadb/disable/plugin,$(PKG_BUILD_DIR),$(p));)
|
||
endef
|
||
|
||
# Define Build/InstallDev, otherwise build system starts installing files into
|
||
# staging area, which would interfere with mariadb-connector-c.
|
||
define Build/InstallDev
|
||
endef
|
||
|
||
define Package/mariadb-client/install
|
||
$(INSTALL_DIR) $(1)/usr/bin
|
||
$(foreach b,$(MARIADB_CLIENT),$(call Package/mariadb/install/bin,$(1),$(b));)
|
||
# Install convenience links for mysqlcheck multi-call binary
|
||
cd $(1)/usr/bin; $(LN) mysqlcheck mysqlanalyze
|
||
cd $(1)/usr/bin; $(LN) mysqlcheck mysqlrepair
|
||
cd $(1)/usr/bin; $(LN) mysqlcheck mysqloptimize
|
||
endef
|
||
|
||
define Package/mariadb-client-base/install
|
||
$(INSTALL_DIR) $(1)$(CONF_DIR)/conf.d
|
||
$(INSTALL_CONF) conf/50-mysql-clients.cnf $(1)$(CONF_DIR)/conf.d
|
||
endef
|
||
|
||
define Package/mariadb-client-extra/install
|
||
$(INSTALL_DIR) $(1)/usr/bin
|
||
$(foreach b,$(MARIADB_CLIENT_EXTRA),$(call Package/mariadb/install/bin,$(1),$(b));)
|
||
endef
|
||
|
||
define Package/mariadb-server/install
|
||
$(INSTALL_DIR) $(1)/usr/bin
|
||
$(foreach b,$(MARIADB_SERVER),$(call Package/mariadb/install/bin,$(1),$(b));)
|
||
endef
|
||
|
||
define Package/mariadb-server-base/install
|
||
$(INSTALL_DIR) $(1)$(CONF_DIR)/conf.d
|
||
$(INSTALL_DIR) $(1)$(SHARE_DIR)/charsets
|
||
$(INSTALL_DIR) $(1)$(SHARE_DIR)/english
|
||
$(INSTALL_DIR) $(1)/etc/config
|
||
$(INSTALL_DIR) $(1)/etc/init.d
|
||
$(INSTALL_BIN) files/mysqld.init $(1)/etc/init.d/mysqld
|
||
$(SED) '/^[a-z]/s/^/#/' $(PKG_INSTALL_DIR)$(SHARE_DIR)/wsrep.cnf
|
||
$(INSTALL_CONF) $(PKG_INSTALL_DIR)$(SHARE_DIR)/wsrep.cnf $(1)$(CONF_DIR)/conf.d/60-galera.cnf
|
||
$(INSTALL_CONF) conf/50-server.cnf $(1)$(CONF_DIR)/conf.d
|
||
$(INSTALL_CONF) files/mysqld.config $(1)/etc/config/mysqld
|
||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/charsets/* $(1)$(SHARE_DIR)/charsets
|
||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/english/errmsg.sys $(1)$(SHARE_DIR)/english
|
||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/fill_help_tables.sql $(1)$(SHARE_DIR)
|
||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/maria_add_gis_sp_bootstrap.sql $(1)$(SHARE_DIR)
|
||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/mysql_performance_tables.sql $(1)$(SHARE_DIR)
|
||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/mysql_system_tables.sql $(1)$(SHARE_DIR)
|
||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/mysql_system_tables_data.sql $(1)$(SHARE_DIR)
|
||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/mysql_test_db.sql $(1)$(SHARE_DIR)
|
||
endef
|
||
|
||
define Package/mariadb-server-extra/install
|
||
$(INSTALL_DIR) $(1)/usr/bin
|
||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/bin/wsrep_sst_common $(1)/usr/bin
|
||
$(SED) 's,/bin/bash,/bin/sh,g' $(PKG_INSTALL_DIR)/usr/bin/wsrep_sst_*
|
||
$(foreach b,$(MARIADB_SERVER_EXTRA),$(call Package/mariadb/install/bin,$(1),$(b));)
|
||
cd $(1)/usr/bin; $(LN) mariabackup mariadb-backup
|
||
endef
|
||
|
||
define BuildPlugin
|
||
define Package/mariadb-server-plugin-$(subst _,-,$(1))
|
||
$(call Package/mariadb/Default)
|
||
TITLE:=mariadb-server plugin
|
||
DEPENDS:=mariadb-server $(patsubst +%,+PACKAGE_mariadb-server-plugin-$(subst _,-,$(1)):%,$(2))
|
||
endef
|
||
define Package/mariadb-server-plugin-$(subst _,-,$(1))/description
|
||
$(call Package/mariadb/description/Default)
|
||
|
||
This package provides the $(1) plugin.
|
||
|
||
endef
|
||
define Package/mariadb-server-plugin-$(subst _,-,$(1))/install
|
||
$(INSTALL_DIR) $$(1)$(PLUGIN_DIR)
|
||
$(call Package/mariadb/install/plugin,$$(1),$(1))
|
||
ifeq ($(1),auth_pam)
|
||
$(CP) $(PKG_INSTALL_DIR)$(PLUGIN_DIR)/auth_pam_tool_dir \
|
||
$$(1)$(PLUGIN_DIR)
|
||
endif
|
||
ifeq ($(1),ha_spider)
|
||
$(INSTALL_DIR) $$(1)$(SHARE_DIR)
|
||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)$(SHARE_DIR)/install_spider.sql \
|
||
$$(1)$(SHARE_DIR)
|
||
endif
|
||
endef
|
||
$$(eval $$(call BuildPackage,mariadb-server-plugin-$(subst _,-,$(1))))
|
||
endef
|
||
|
||
define Package/mariadb-server-plugin-auth-pam/postinst
|
||
#!/bin/sh
|
||
if [ -z "$${IPKG_INSTROOT}" ]; then
|
||
chown root:mariadb /usr/lib/mariadb/plugin/auth_pam_tool_dir > /dev/null 2>&1
|
||
chmod 0750 /usr/lib/mariadb/plugin/auth_pam_tool_dir > /dev/null 2>&1
|
||
fi
|
||
exit 0
|
||
endef
|
||
|
||
$(eval $(call HostBuild))
|
||
$(eval $(call BuildPackage,mariadb-client))
|
||
$(eval $(call BuildPackage,mariadb-client-base))
|
||
$(eval $(call BuildPackage,mariadb-client-extra))
|
||
$(eval $(call BuildPackage,mariadb-server))
|
||
$(eval $(call BuildPackage,mariadb-server-base))
|
||
$(eval $(call BuildPackage,mariadb-server-extra))
|
||
|
||
$(eval $(call BuildPlugin,auth_ed25519,))
|
||
$(eval $(call BuildPlugin,auth_gssapi,+krb5-libs))
|
||
$(eval $(call BuildPlugin,auth_pam,+libpam))
|
||
$(eval $(call BuildPlugin,auth_pam_v1,+libpam))
|
||
$(eval $(call BuildPlugin,disks,))
|
||
$(eval $(call BuildPlugin,feedback,))
|
||
$(eval $(call BuildPlugin,file_key_management,))
|
||
$(eval $(call BuildPlugin,ha_archive,))
|
||
$(eval $(call BuildPlugin,ha_blackhole,))
|
||
$(eval $(call BuildPlugin,ha_connect,+libxml2))
|
||
$(eval $(call BuildPlugin,ha_federated,))
|
||
$(eval $(call BuildPlugin,ha_federatedx,))
|
||
$(eval $(call BuildPlugin,ha_sphinx,))
|
||
$(eval $(call BuildPlugin,ha_spider,))
|
||
$(eval $(call BuildPlugin,handlersocket,))
|
||
$(eval $(call BuildPlugin,locales,))
|
||
$(eval $(call BuildPlugin,metadata_lock_info,))
|
||
$(eval $(call BuildPlugin,query_cache_info,))
|
||
$(eval $(call BuildPlugin,query_response_time,))
|
||
$(eval $(call BuildPlugin,server_audit,))
|
||
$(eval $(call BuildPlugin,simple_password_check,))
|
||
$(eval $(call BuildPlugin,sql_errlog,))
|
||
$(eval $(call BuildPlugin,wsrep_info,))
|