initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
Do not access DB_CONFIG when db_home is not set
|
||||
|
||||
Fixes CVE-2017-10140:
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=1464032#c9
|
||||
|
||||
Downloaded from
|
||||
http://pkgs.fedoraproject.org/cgit/rpms/libdb.git/commit/?id=8047fa8580659fcae740c25e91b490539b8453eb
|
||||
|
||||
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
|
||||
--- db-5.3.28/src/env/env_open.c.old 2017-06-26 10:32:11.011419981 +0200
|
||||
+++ db-5.3.28/src/env/env_open.c 2017-06-26 10:32:46.893721233 +0200
|
||||
@@ -473,7 +473,7 @@
|
||||
env->db_mode = mode == 0 ? DB_MODE_660 : mode;
|
||||
|
||||
/* Read the DB_CONFIG file. */
|
||||
- if ((ret = __env_read_db_config(env)) != 0)
|
||||
+ if (env->db_home != NULL && (ret = __env_read_db_config(env)) != 0)
|
||||
return (ret);
|
||||
|
||||
/*
|
||||
@@ -0,0 +1,27 @@
|
||||
Rename __atomic_compare_exchange to not clash with gcc built-in
|
||||
|
||||
Downloaded from
|
||||
https://src.fedoraproject.org/cgit/rpms/libdb.git/commit/?id=d6841b3b46a51db98c162347211a5a64d154ea37
|
||||
|
||||
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
|
||||
--- db-5.3.28/src/dbinc/atomic.h.old 2018-05-23 09:20:04.216914922 +0200
|
||||
+++ db-5.3.28/src/dbinc/atomic.h 2018-05-23 09:20:49.510057897 +0200
|
||||
@@ -144,7 +144,7 @@
|
||||
#define atomic_inc(env, p) __atomic_inc(p)
|
||||
#define atomic_dec(env, p) __atomic_dec(p)
|
||||
#define atomic_compare_exchange(env, p, o, n) \
|
||||
- __atomic_compare_exchange((p), (o), (n))
|
||||
+ __db_atomic_compare_exchange((p), (o), (n))
|
||||
static inline int __atomic_inc(db_atomic_t *p)
|
||||
{
|
||||
int temp;
|
||||
@@ -176,7 +176,7 @@
|
||||
* http://gcc.gnu.org/onlinedocs/gcc-4.1.0/gcc/Atomic-Builtins.html
|
||||
* which configure could be changed to use.
|
||||
*/
|
||||
-static inline int __atomic_compare_exchange(
|
||||
+static inline int __db_atomic_compare_exchange(
|
||||
db_atomic_t *p, atomic_value_t oldval, atomic_value_t newval)
|
||||
{
|
||||
atomic_value_t was;
|
||||
@@ -0,0 +1,22 @@
|
||||
config BR2_PACKAGE_BERKELEYDB
|
||||
bool "berkeleydb"
|
||||
help
|
||||
The Berkeley database. A very common library for
|
||||
database applications.
|
||||
|
||||
http://www.sleepycat.com/products/db.shtml
|
||||
|
||||
if BR2_PACKAGE_BERKELEYDB
|
||||
|
||||
config BR2_PACKAGE_BERKELEYDB_COMPAT185
|
||||
bool "DB 1.85 compatibility"
|
||||
help
|
||||
Build and install DB 1.85 compatibility API.
|
||||
|
||||
config BR2_PACKAGE_BERKELEYDB_TOOLS
|
||||
bool "install tools"
|
||||
help
|
||||
Install berkeleydb tools, mostly useful for debugging
|
||||
purposes.
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 76a25560d9e52a198d37a31440fd07632b5f1f8f9f2b6d5438f4bc3e7c9013ef db-5.3.28.NC.tar.gz
|
||||
sha256 b78815181a53241f9347c6b47d1031fd669946f863e1edc807a291354cec024b LICENSE
|
||||
@@ -0,0 +1,82 @@
|
||||
################################################################################
|
||||
#
|
||||
# berkeleydb
|
||||
#
|
||||
################################################################################
|
||||
|
||||
# Since BerkeleyDB version 6 and above are licensed under the Affero
|
||||
# GPL (AGPL), we want to keep this 'bdb' package at version 5.x to
|
||||
# avoid licensing issues.
|
||||
# BerkeleyDB version 6 or above should be provided by a dedicated
|
||||
# package instead.
|
||||
BERKELEYDB_VERSION = 5.3.28
|
||||
BERKELEYDB_SITE = http://download.oracle.com/berkeley-db
|
||||
BERKELEYDB_SOURCE = db-$(BERKELEYDB_VERSION).NC.tar.gz
|
||||
BERKELEYDB_SUBDIR = build_unix
|
||||
BERKELEYDB_LICENSE = BerkeleyDB License
|
||||
BERKELEYDB_LICENSE_FILES = LICENSE
|
||||
BERKELEYDB_CPE_ID_VENDOR = oracle
|
||||
BERKELEYDB_CPE_ID_PRODUCT = berkeley_db
|
||||
BERKELEYDB_INSTALL_STAGING = YES
|
||||
BERKELEYDB_BINARIES = db_archive db_checkpoint db_deadlock db_dump \
|
||||
db_hotbackup db_load db_log_verify db_printlog db_recover db_replicate \
|
||||
db_stat db_tuner db_upgrade db_verify
|
||||
|
||||
# build directory can't be the directory where configure are there, so..
|
||||
define BERKELEYDB_CONFIGURE_CMDS
|
||||
(cd $(@D)/build_unix; rm -rf config.cache; \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
$(TARGET_CONFIGURE_ARGS) \
|
||||
../dist/configure $(QUIET) \
|
||||
--target=$(GNU_TARGET_NAME) \
|
||||
--host=$(GNU_TARGET_NAME) \
|
||||
--build=$(GNU_HOST_NAME) \
|
||||
--prefix=/usr \
|
||||
--exec-prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--with-gnu-ld \
|
||||
$(if $(BR2_INSTALL_LIBSTDCPP),--enable-cxx,--disable-cxx) \
|
||||
--disable-java \
|
||||
--disable-tcl \
|
||||
$(if $(BR2_PACKAGE_BERKELEYDB_COMPAT185),--enable-compat185,--disable-compat185) \
|
||||
$(SHARED_STATIC_LIBS_OPTS) \
|
||||
--with-pic \
|
||||
--enable-o_direct \
|
||||
$(if $(BR2_TOOLCHAIN_HAS_THREADS),--enable-mutexsupport,--disable-mutexsupport) \
|
||||
)
|
||||
endef
|
||||
|
||||
define HOST_BERKELEYDB_CONFIGURE_CMDS
|
||||
(cd $(@D)/build_unix; rm -rf config.cache; \
|
||||
$(HOST_CONFIGURE_OPTS) \
|
||||
../dist/configure $(QUIET) \
|
||||
--prefix=$(HOST_DIR) \
|
||||
--with-gnu-ld \
|
||||
--disable-cxx \
|
||||
--disable-java \
|
||||
--disable-tcl \
|
||||
--disable-compat185 \
|
||||
--with-pic \
|
||||
--enable-o_direct \
|
||||
--disable-mutexsupport \
|
||||
)
|
||||
endef
|
||||
|
||||
ifneq ($(BR2_PACKAGE_BERKELEYDB_TOOLS),y)
|
||||
|
||||
define BERKELEYDB_REMOVE_TOOLS
|
||||
rm -f $(addprefix $(TARGET_DIR)/usr/bin/, $(BERKELEYDB_BINARIES))
|
||||
endef
|
||||
|
||||
BERKELEYDB_POST_INSTALL_TARGET_HOOKS += BERKELEYDB_REMOVE_TOOLS
|
||||
|
||||
endif
|
||||
|
||||
define BERKELEYDB_REMOVE_DOCS
|
||||
rm -rf $(TARGET_DIR)/usr/docs
|
||||
endef
|
||||
|
||||
BERKELEYDB_POST_INSTALL_TARGET_HOOKS += BERKELEYDB_REMOVE_DOCS
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user