2010-03-28 01:48:49 +03:00
#!/usr/bin/env python
2010-04-04 04:06:34 +04:00
APPNAME = 'ldb'
2024-01-29 17:08:08 +03:00
# For Samba 4.20.x !
2023-07-25 16:56:59 +03:00
VERSION = '2.9.0'
2010-02-21 05:55:58 +03:00
2010-04-04 04:18:39 +04:00
import sys, os
2010-04-04 07:16:49 +04:00
2010-04-04 04:18:39 +04:00
# find the buildtools directory
2018-02-02 17:34:31 +03:00
top = '.'
while not os.path.exists(top+'/buildtools') and len(top.split('/')) < 5:
top = top + '/..'
sys.path.insert(0, top + '/buildtools/wafsamba')
out = 'bin'
2010-04-04 04:18:39 +04:00
2018-02-02 17:34:31 +03:00
from wafsamba import samba_dist, samba_utils
from waflib import Errors, Options, Logs, Context
import shutil
2010-04-04 05:00:42 +04:00
2011-07-05 04:01:32 +04:00
samba_dist.DIST_DIRS('''lib/ldb:. lib/replace:lib/replace lib/talloc:lib/talloc
2014-07-23 08:34:17 +04:00
lib/tdb:lib/tdb lib/tdb:lib/tdb lib/tevent:lib/tevent
2015-01-21 04:58:48 +03:00
third_party/popt:third_party/popt
2015-10-02 12:36:50 +03:00
third_party/cmocka:third_party/cmocka
2015-03-25 14:13:40 +03:00
buildtools:buildtools third_party/waf:third_party/waf''')
2010-02-26 14:21:50 +03:00
2019-06-12 23:51:05 +03:00
samba_dist.DIST_FILES('''lib/util/binsearch.h:lib/util/binsearch.h
lib/util/attr.h:lib/util/attr.h''')
2010-03-31 11:05:29 +04:00
2018-02-02 17:34:31 +03:00
def options(opt):
2010-03-28 08:42:28 +04:00
opt.BUILTIN_DEFAULT('replace')
2010-10-24 01:26:43 +04:00
opt.PRIVATE_EXTENSION_DEFAULT('ldb', noextension='ldb')
2012-06-19 07:13:10 +04:00
opt.RECURSE('lib/tdb')
2010-04-04 07:16:49 +04:00
opt.RECURSE('lib/tevent')
2010-09-23 04:15:38 +04:00
opt.RECURSE('lib/replace')
2018-02-02 17:34:31 +03:00
opt.load('python') # options for disabling pyc or pyo compilation
2010-02-21 05:55:58 +03:00
2017-01-11 07:10:19 +03:00
opt.add_option('--without-ldb-lmdb',
help='disable new LMDB backend for LDB',
action='store_true', dest='without_ldb_lmdb', default=False)
2010-02-21 05:55:58 +03:00
def configure(conf):
2012-06-19 07:13:10 +04:00
conf.RECURSE('lib/tdb')
2010-04-04 07:16:49 +04:00
conf.RECURSE('lib/tevent')
2014-07-23 08:34:17 +04:00
if conf.CHECK_FOR_THIRD_PARTY():
conf.RECURSE('third_party/popt')
2015-10-02 12:36:50 +03:00
conf.RECURSE('third_party/cmocka')
2014-07-23 08:34:17 +04:00
else:
if not conf.CHECK_POPT():
2018-02-02 17:34:31 +03:00
raise Errors.WafError('popt development packages have not been found.\nIf third_party is installed, check that it is in the proper place.')
2014-07-23 08:34:17 +04:00
else:
conf.define('USING_SYSTEM_POPT', 1)
2015-10-02 12:36:50 +03:00
if not conf.CHECK_CMOCKA():
2018-02-02 17:34:31 +03:00
raise Errors.WafError('cmocka development package have not been found.\nIf third_party is installed, check that it is in the proper place.')
2015-10-02 12:36:50 +03:00
else:
conf.define('USING_SYSTEM_CMOCKA', 1)
2010-09-23 04:15:38 +04:00
conf.RECURSE('lib/replace')
2011-04-23 04:04:13 +04:00
conf.find_program('xsltproc', var='XSLTPROC')
2019-02-15 06:13:48 +03:00
conf.SAMBA_CHECK_PYTHON()
conf.SAMBA_CHECK_PYTHON_HEADERS()
2010-04-04 07:16:49 +04:00
2010-03-17 13:53:29 +03:00
# where does the default LIBDIR end up? in conf.env somewhere?
#
2010-03-23 01:29:51 +03:00
conf.CONFIG_PATH('LDB_MODULESDIR', conf.SUBST_ENV_VAR('MODULESDIR') + '/ldb')
2010-03-28 06:01:36 +04:00
2010-04-13 15:33:04 +04:00
conf.env.standalone_ldb = conf.IN_LAUNCH_DIR()
2010-03-28 09:38:27 +04:00
2010-05-31 06:48:00 +04:00
if not conf.env.standalone_ldb:
2018-07-12 03:34:56 +03:00
max_ldb_version = [int(x) for x in VERSION.split(".")]
max_ldb_version[2] = 999
max_ldb_version_dots = "%d.%d.%d" % tuple(max_ldb_version)
2017-01-27 22:34:25 +03:00
if conf.env.disable_python:
2018-07-12 03:34:56 +03:00
if conf.CHECK_BUNDLED_SYSTEM_PKG('ldb',
minversion=VERSION,
maxversion=max_ldb_version_dots,
onlyif='talloc tdb tevent',
implied_deps='replace talloc tdb tevent'):
2017-01-27 22:34:25 +03:00
conf.define('USING_SYSTEM_LDB', 1)
else:
using_system_pyldb_util = True
2018-11-24 19:41:53 +03:00
dflt_name = 'pyldb-util' + conf.all_envs['default']['PYTHON_SO_ABI_FLAG']
if not conf.CHECK_BUNDLED_SYSTEM_PKG(dflt_name,
2018-07-12 03:34:56 +03:00
minversion=VERSION,
maxversion=max_ldb_version_dots,
onlyif='talloc tdb tevent',
implied_deps='replace talloc tdb tevent ldb'):
2017-03-06 12:23:35 +03:00
using_system_pyldb_util = False
2017-01-27 22:34:25 +03:00
if using_system_pyldb_util:
conf.define('USING_SYSTEM_PYLDB_UTIL', 1)
2018-07-12 03:34:56 +03:00
if conf.CHECK_BUNDLED_SYSTEM_PKG('ldb',
minversion=VERSION,
maxversion=max_ldb_version_dots,
2018-11-24 19:41:53 +03:00
onlyif='talloc tdb tevent %s' % dflt_name,
2018-07-12 03:34:56 +03:00
implied_deps='replace talloc tdb tevent'):
2015-01-21 04:58:49 +03:00
conf.define('USING_SYSTEM_LDB', 1)
2010-05-31 06:48:00 +04:00
2017-01-11 07:10:19 +03:00
if not conf.CHECK_CODE('return !(sizeof(size_t) >= 8)',
"HAVE_64_BIT_SIZE_T_FOR_LMDB",
execute=True,
msg='Checking for a 64-bit host to '
'support lmdb'):
Logs.warn("--without-ldb-lmdb implied as this "
"host is not 64-bit")
if not conf.env.standalone_ldb and \
not Options.options.without_ad_dc and \
conf.CONFIG_GET('ENABLE_SELFTEST'):
Logs.warn("NOTE: Some AD DC parts of selftest will fail")
conf.env.REQUIRE_LMDB = False
else:
if conf.env.standalone_ldb:
if Options.options.without_ldb_lmdb:
conf.env.REQUIRE_LMDB = False
else:
conf.env.REQUIRE_LMDB = True
elif Options.options.without_ad_dc:
conf.env.REQUIRE_LMDB = False
else:
if Options.options.without_ldb_lmdb:
if not Options.options.without_ad_dc and \
conf.CONFIG_GET('ENABLE_SELFTEST'):
2018-02-02 17:34:31 +03:00
raise Errors.WafError('--without-ldb-lmdb conflicts '
2017-01-11 07:10:19 +03:00
'with --enable-selftest while '
'building the AD DC')
conf.env.REQUIRE_LMDB = False
else:
conf.env.REQUIRE_LMDB = True
2017-06-30 09:09:38 +03:00
if conf.CONFIG_SET('USING_SYSTEM_LDB'):
v = VERSION.split('.')
conf.DEFINE('EXPECTED_SYSTEM_LDB_VERSION_MAJOR', int(v[0]))
conf.DEFINE('EXPECTED_SYSTEM_LDB_VERSION_MINOR', int(v[1]))
conf.DEFINE('EXPECTED_SYSTEM_LDB_VERSION_RELEASE', int(v[2]))
2010-05-31 06:48:00 +04:00
if conf.env.standalone_ldb:
2010-06-24 10:03:02 +04:00
conf.CHECK_XSLTPROC_MANPAGES()
2010-05-31 06:48:00 +04:00
2010-05-31 14:51:58 +04:00
# we need this for the ldap backend
if conf.CHECK_FUNCS_IN('ber_flush ldap_open ldap_initialize', 'lber ldap', headers='lber.h ldap.h'):
conf.env.ENABLE_LDAP_BACKEND = True
2010-03-28 06:01:36 +04:00
2011-07-05 09:55:25 +04:00
# we don't want any libraries or modules to rely on runtime
# resolution of symbols
2013-05-17 12:43:08 +04:00
if not sys.platform.startswith("openbsd"):
2011-07-05 09:55:25 +04:00
conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True)
2010-03-29 10:20:39 +04:00
2017-01-11 07:10:19 +03:00
# if lmdb support is enabled then we require lmdb
# is present, build the mdb back end and enable lmdb support in
# the tools.
if conf.env.REQUIRE_LMDB and \
not conf.CONFIG_SET('USING_SYSTEM_LDB'):
if not conf.CHECK_CFG(package='lmdb',
args='"lmdb >= 0.9.16" --cflags --libs',
msg='Checking for lmdb >= 0.9.16',
mandatory=False):
if not conf.CHECK_CODE('''
#if MDB_VERSION_MAJOR == 0 \
&& MDB_VERSION_MINOR <= 9 \
&& MDB_VERSION_PATCH < 16
#error LMDB too old
#endif
''',
'HAVE_GOOD_LMDB_VERSION',
headers='lmdb.h',
msg='Checking for lmdb >= 0.9.16 via header check'):
if conf.env.standalone_ldb:
2018-02-02 17:34:31 +03:00
raise Errors.WafError('ldb build (unless --without-ldb-lmdb) '
2017-01-11 07:10:19 +03:00
'requires '
'lmdb 0.9.16 or later')
elif not Options.options.without_ad_dc:
2018-02-02 17:34:31 +03:00
raise Errors.WafError('Samba AD DC and --enable-selftest '
2017-01-11 07:10:19 +03:00
'requires '
'lmdb 0.9.16 or later')
if conf.CHECK_FUNCS_IN('mdb_env_create', 'lmdb', headers='lmdb.h'):
conf.DEFINE('HAVE_LMDB', '1')
2018-10-03 23:18:55 +03:00
conf.env.HAVE_LMDB = True
2017-01-11 07:10:19 +03:00
2011-07-05 09:55:25 +04:00
conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
2010-10-25 04:29:12 +04:00
2010-02-21 05:55:58 +03:00
conf.SAMBA_CONFIG_H()
2011-11-13 21:01:09 +04:00
conf.SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS()
2010-02-21 05:55:58 +03:00
def build(bld):
2010-04-04 07:16:49 +04:00
bld.RECURSE('lib/tevent')
2014-07-23 08:34:17 +04:00
2014-08-21 08:34:03 +04:00
if bld.CHECK_FOR_THIRD_PARTY():
2014-07-23 08:34:17 +04:00
bld.RECURSE('third_party/popt')
2015-10-02 12:36:50 +03:00
bld.RECURSE('third_party/cmocka')
2014-07-23 08:34:17 +04:00
2010-09-23 04:15:38 +04:00
bld.RECURSE('lib/replace')
2012-06-19 07:13:10 +04:00
bld.RECURSE('lib/tdb')
2010-02-21 05:55:58 +03:00
2010-12-08 17:12:57 +03:00
if bld.env.standalone_ldb:
2018-05-18 05:10:50 +03:00
if not 'PACKAGE_VERSION' in bld.env:
bld.env.PACKAGE_VERSION = VERSION
bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
2010-12-08 17:12:57 +03:00
private_library = False
else:
private_library = True
2018-05-18 05:10:50 +03:00
# we're not currently linking against the ldap libs, but ldb.pc.in
# has @LDAP_LIBS@
bld.env.LDAP_LIBS = ''
2010-12-08 17:12:57 +03:00
2010-02-21 05:55:58 +03:00
LDB_MAP_SRC = bld.SUBDIR('ldb_map',
'ldb_map.c ldb_map_inbound.c ldb_map_outbound.c')
COMMON_SRC = bld.SUBDIR('common',
2010-10-13 03:36:24 +04:00
'''ldb_modules.c ldb_ldif.c ldb_parse.c ldb_msg.c ldb_utf8.c
2012-10-31 09:06:03 +04:00
ldb_debug.c ldb_dn.c ldb_match.c ldb_options.c ldb_pack.c
2010-02-21 05:55:58 +03:00
ldb_attributes.c attrib_handlers.c ldb_controls.c qsort.c''')
2010-11-01 10:45:25 +03:00
bld.SAMBA_MODULE('ldb_ldap', 'ldb_ldap/ldb_ldap.c',
init_function='ldb_ldap_init',
module_init_name='ldb_init_module',
deps='talloc lber ldap ldb',
enabled=bld.env.ENABLE_LDAP_BACKEND,
internal_module=False,
subsystem='ldb')
2010-03-28 06:01:36 +04:00
2017-01-27 22:34:25 +03:00
if bld.PYTHON_BUILD_IS_ENABLED():
2015-08-14 13:43:41 +03:00
if not bld.CONFIG_SET('USING_SYSTEM_PYLDB_UTIL'):
2019-02-15 06:37:48 +03:00
name = bld.pyembed_libname('pyldb-util')
bld.SAMBA_LIBRARY(name,
deps='replace ldb',
source='pyldb_util.c',
public_headers=('' if private_library else 'pyldb.h'),
public_headers_install=not private_library,
vnum=VERSION,
private_library=private_library,
pc_files='pyldb-util.pc',
pyembed=True,
enabled=bld.PYTHON_BUILD_IS_ENABLED(),
abi_directory='ABI',
abi_match='pyldb_*')
if not bld.CONFIG_SET('USING_SYSTEM_LDB'):
bld.SAMBA_PYTHON('pyldb', 'pyldb.c',
deps='replace ldb ' + name,
realname='ldb.so',
cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION)
2015-08-14 13:43:41 +03:00
2017-07-06 08:44:28 +03:00
# Do only install this file as part of the Samba build if we do not
# use the system libldb!
if not bld.CONFIG_SET('USING_SYSTEM_PYLDB_UTIL'):
2019-02-15 06:37:48 +03:00
bld.SAMBA_SCRIPT('_ldb_text.py',
pattern='_ldb_text.py',
installdir='python')
2015-06-09 18:44:40 +03:00
2019-02-15 06:37:48 +03:00
bld.INSTALL_FILES('${PYTHONARCHDIR}', '_ldb_text.py')
2015-06-09 18:44:40 +03:00
2010-03-28 09:38:27 +04:00
if not bld.CONFIG_SET('USING_SYSTEM_LDB'):
2015-11-07 02:57:36 +03:00
if bld.is_install:
2010-10-13 03:36:24 +04:00
modules_dir = bld.EXPAND_VARIABLES('${LDB_MODULESDIR}')
else:
# when we run from the source directory, we want to use
# the current modules, not the installed ones
modules_dir = os.path.join(os.getcwd(), 'bin/modules/ldb')
2010-11-01 10:45:25 +03:00
abi_match = '!ldb_*module_ops !ldb_*backend_ops ldb_*'
2010-10-13 03:36:24 +04:00
2015-12-28 21:57:26 +03:00
ldb_headers = ('include/ldb.h include/ldb_errors.h '
'include/ldb_module.h include/ldb_handlers.h')
2010-10-13 03:36:24 +04:00
bld.SAMBA_LIBRARY('ldb',
COMMON_SRC + ' ' + LDB_MAP_SRC,
2013-02-15 06:32:06 +04:00
deps='tevent LIBLDB_MAIN replace',
2010-10-13 03:36:24 +04:00
includes='include',
2015-12-28 21:57:26 +03:00
public_headers=('' if private_library else ldb_headers),
2011-03-03 09:21:45 +03:00
public_headers_install=not private_library,
2011-08-21 05:02:58 +04:00
pc_files='ldb.pc',
2010-12-09 13:58:20 +03:00
vnum=VERSION,
2010-12-08 17:12:57 +03:00
private_library=private_library,
2010-11-01 10:45:25 +03:00
manpages='man/ldb.3',
2011-08-07 19:17:18 +04:00
abi_directory='ABI',
2010-12-08 17:12:57 +03:00
abi_match = abi_match)
2010-11-01 10:45:25 +03:00
2011-02-10 04:04:36 +03:00
# generate a include/ldb_version.h
2017-06-23 11:50:54 +03:00
def generate_ldb_version_h(t):
'''generate a vscript file for our public libraries'''
tgt = t.outputs[0].bldpath(t.env)
v = t.env.LDB_VERSION.split('.')
f = open(tgt, mode='w')
try:
f.write('#define LDB_VERSION "%s"\n' % t.env.LDB_VERSION)
f.write('#define LDB_VERSION_MAJOR %d\n' % int(v[0]))
f.write('#define LDB_VERSION_MINOR %d\n' % int(v[1]))
f.write('#define LDB_VERSION_RELEASE %d\n' % int(v[2]))
finally:
f.close()
return
2011-02-10 04:04:36 +03:00
t = bld.SAMBA_GENERATOR('ldb_version.h',
2017-06-23 11:50:54 +03:00
rule=generate_ldb_version_h,
2014-08-27 12:29:50 +04:00
dep_vars=['LDB_VERSION'],
2011-02-10 04:04:36 +03:00
target='include/ldb_version.h',
2011-03-03 09:21:45 +03:00
public_headers='include/ldb_version.h',
public_headers_install=not private_library)
2011-02-10 04:04:36 +03:00
t.env.LDB_VERSION = VERSION
2010-06-15 02:59:49 +04:00
bld.SAMBA_MODULE('ldb_asq',
'modules/asq.c',
2010-11-01 06:59:28 +03:00
init_function='ldb_asq_init',
module_init_name='ldb_init_module',
2010-12-15 18:47:46 +03:00
internal_module=False,
2010-10-30 04:42:51 +04:00
deps='ldb',
2010-06-15 02:59:49 +04:00
subsystem='ldb')
bld.SAMBA_MODULE('ldb_server_sort',
'modules/sort.c',
2010-11-01 06:59:28 +03:00
init_function='ldb_server_sort_init',
2010-12-15 18:47:46 +03:00
internal_module=False,
2010-11-01 06:59:28 +03:00
module_init_name='ldb_init_module',
2010-10-30 04:42:51 +04:00
deps='ldb',
2010-06-15 02:59:49 +04:00
subsystem='ldb')
bld.SAMBA_MODULE('ldb_paged_searches',
'modules/paged_searches.c',
2010-11-01 06:59:28 +03:00
init_function='ldb_paged_searches_init',
2010-12-15 18:47:46 +03:00
internal_module=False,
2010-11-01 06:59:28 +03:00
module_init_name='ldb_init_module',
2010-10-30 04:42:51 +04:00
deps='ldb',
2010-06-15 02:59:49 +04:00
subsystem='ldb')
bld.SAMBA_MODULE('ldb_rdn_name',
'modules/rdn_name.c',
2010-11-01 06:59:28 +03:00
init_function='ldb_rdn_name_init',
2010-12-15 18:47:46 +03:00
internal_module=False,
2010-11-01 06:59:28 +03:00
module_init_name='ldb_init_module',
2010-10-30 04:42:51 +04:00
deps='ldb',
2010-06-15 02:59:49 +04:00
subsystem='ldb')
bld.SAMBA_MODULE('ldb_sample',
'tests/sample_module.c',
2010-11-01 06:59:28 +03:00
init_function='ldb_sample_init',
2010-12-15 18:47:46 +03:00
internal_module=False,
2010-11-01 06:59:28 +03:00
module_init_name='ldb_init_module',
2010-10-30 04:42:51 +04:00
deps='ldb',
2010-06-15 02:59:49 +04:00
subsystem='ldb')
bld.SAMBA_MODULE('ldb_skel',
'modules/skel.c',
2010-11-01 06:59:28 +03:00
init_function='ldb_skel_init',
2010-12-15 18:47:46 +03:00
internal_module=False,
2010-11-01 06:59:28 +03:00
module_init_name='ldb_init_module',
2010-10-30 04:42:51 +04:00
deps='ldb',
2010-06-15 02:59:49 +04:00
subsystem='ldb')
bld.SAMBA_MODULE('ldb_sqlite3',
'sqlite3/ldb_sqlite3.c',
2010-11-01 06:59:28 +03:00
init_function='ldb_sqlite3_init',
2010-12-15 18:47:46 +03:00
internal_module=False,
2010-11-01 06:59:28 +03:00
module_init_name='ldb_init_module',
2010-06-15 02:59:49 +04:00
enabled=False,
2010-10-30 04:42:51 +04:00
deps='ldb',
2010-06-15 02:59:49 +04:00
subsystem='ldb')
bld.SAMBA_MODULE('ldb_tdb',
bld.SUBDIR('ldb_tdb',
2018-02-16 03:26:46 +03:00
'''ldb_tdb_init.c'''),
2010-11-01 06:59:28 +03:00
init_function='ldb_tdb_init',
module_init_name='ldb_init_module',
2010-12-15 18:47:46 +03:00
internal_module=False,
2018-07-23 01:02:16 +03:00
deps='ldb ldb_tdb_int ldb_key_value',
2010-06-15 02:59:49 +04:00
subsystem='ldb')
2018-07-23 01:02:16 +03:00
bld.SAMBA_LIBRARY('ldb_tdb_int',
bld.SUBDIR('ldb_tdb',
'''ldb_tdb_wrap.c ldb_tdb.c'''),
private_library=True,
deps='ldb tdb ldb_key_value ldb_tdb_err_map')
bld.SAMBA_LIBRARY('ldb_tdb_err_map',
2018-02-16 03:26:46 +03:00
bld.SUBDIR('ldb_tdb',
2018-07-23 01:02:16 +03:00
'''ldb_tdb_err_map.c '''),
private_library=True,
deps='ldb tdb')
bld.SAMBA_LIBRARY('ldb_key_value',
bld.SUBDIR('ldb_key_value',
'''ldb_kv.c ldb_kv_search.c ldb_kv_index.c
ldb_kv_cache.c'''),
2018-02-16 03:26:46 +03:00
private_library=True,
2018-07-23 01:02:16 +03:00
deps='tdb ldb ldb_tdb_err_map')
2018-02-16 03:26:46 +03:00
2017-01-11 07:10:19 +03:00
if bld.CONFIG_SET('HAVE_LMDB'):
bld.SAMBA_MODULE('ldb_mdb',
bld.SUBDIR('ldb_mdb',
'''ldb_mdb_init.c'''),
init_function='ldb_mdb_init',
module_init_name='ldb_init_module',
internal_module=False,
deps='ldb ldb_key_value ldb_mdb_int',
subsystem='ldb')
bld.SAMBA_LIBRARY('ldb_mdb_int',
bld.SUBDIR('ldb_mdb',
'''ldb_mdb.c '''),
private_library=True,
deps='ldb lmdb ldb_key_value')
lmdb_deps = ' ldb_mdb_int'
else:
lmdb_deps = ''
2018-03-06 05:11:23 +03:00
bld.SAMBA_MODULE('ldb_ldb',
bld.SUBDIR('ldb_ldb',
'''ldb_ldb.c'''),
init_function='ldb_ldb_init',
module_init_name='ldb_init_module',
internal_module=False,
2018-09-21 07:33:42 +03:00
deps='ldb ldb_tdb_int ldb_key_value' + lmdb_deps,
2018-03-06 05:11:23 +03:00
subsystem='ldb')
2010-10-13 18:59:45 +04:00
# have a separate subsystem for common/ldb.c, so it can rebuild
# for install with a different -DLDB_MODULESDIR=
bld.SAMBA_SUBSYSTEM('LIBLDB_MAIN',
'common/ldb.c',
2012-06-19 07:13:10 +04:00
deps='tevent tdb',
2010-10-13 18:59:45 +04:00
includes='include',
2010-11-21 15:05:59 +03:00
cflags=['-DLDB_MODULESDIR=\"%s\"' % modules_dir])
2010-10-13 18:59:45 +04:00
2010-11-14 15:40:58 +03:00
LDB_TOOLS='ldbadd ldbsearch ldbdel ldbmodify ldbedit ldbrename'
for t in LDB_TOOLS.split():
bld.SAMBA_BINARY(t, 'tools/%s.c' % t, deps='ldb-cmdline ldb',
manpages='man/%s.1' % t)
# ldbtest doesn't get installed
bld.SAMBA_BINARY('ldbtest', 'tools/ldbtest.c', deps='ldb-cmdline ldb',
install=False)
2010-03-19 11:50:57 +03:00
2017-01-11 07:10:19 +03:00
if bld.CONFIG_SET('HAVE_LMDB'):
lmdb_deps = ' lmdb'
else:
lmdb_deps = ''
2012-10-30 08:41:27 +04:00
# ldbdump doesn't get installed
2017-01-11 07:10:19 +03:00
bld.SAMBA_BINARY('ldbdump',
'tools/ldbdump.c',
deps='ldb-cmdline ldb' + lmdb_deps,
2012-10-30 08:41:27 +04:00
install=False)
2013-09-09 02:42:39 +04:00
bld.SAMBA_LIBRARY('ldb-cmdline',
source='tools/ldbutil.c tools/cmdline.c',
deps='ldb dl popt',
private_library=True)
2010-11-14 16:32:13 +03:00
2017-05-30 04:53:01 +03:00
bld.SAMBA_BINARY('ldb_tdb_mod_op_test',
source='tests/ldb_mod_op_test.c',
cflags='-DTEST_BE=\"tdb\"',
deps='cmocka ldb',
install=False)
2010-04-04 16:11:30 +04:00
2018-03-23 01:10:25 +03:00
bld.SAMBA_BINARY('ldb_tdb_guid_mod_op_test',
source='tests/ldb_mod_op_test.c',
cflags='-DTEST_BE=\"tdb\" -DGUID_IDX=1',
deps='cmocka ldb',
install=False)
2018-03-20 02:15:12 +03:00
bld.SAMBA_BINARY('ldb_tdb_kv_ops_test',
source='tests/ldb_kv_ops_test.c',
cflags='-DTEST_BE=\"tdb\"',
deps='cmocka ldb',
install=False)
2018-05-07 03:59:00 +03:00
bld.SAMBA_BINARY('ldb_tdb_test',
source='tests/ldb_tdb_test.c',
deps='cmocka ldb',
install=False)
2017-06-15 02:30:33 +03:00
bld.SAMBA_BINARY('ldb_msg_test',
source='tests/ldb_msg.c',
deps='cmocka ldb',
install=False)
2018-03-22 11:53:03 +03:00
bld.SAMBA_BINARY('test_ldb_qsort',
source='tests/test_ldb_qsort.c',
deps='cmocka ldb',
install=False)
2018-07-03 06:16:56 +03:00
bld.SAMBA_BINARY('test_ldb_dn',
source='tests/test_ldb_dn.c',
deps='cmocka ldb',
install=False)
2019-02-19 00:24:38 +03:00
bld.SAMBA_BINARY('ldb_match_test',
source='tests/ldb_match_test.c',
deps='cmocka ldb',
install=False)
2019-04-01 04:10:10 +03:00
bld.SAMBA_BINARY('ldb_key_value_test',
source='tests/ldb_key_value_test.c',
deps='cmocka ldb ldb_tdb_err_map',
install=False)
2019-04-12 01:46:37 +03:00
bld.SAMBA_BINARY('ldb_parse_test',
source='tests/ldb_parse_test.c',
deps='cmocka ldb ldb_tdb_err_map',
install=False)
2019-08-26 04:04:07 +03:00
bld.SAMBA_BINARY('ldb_filter_attrs_test',
source='tests/ldb_filter_attrs_test.c',
deps='cmocka ldb ldb_tdb_err_map',
install=False)
2023-03-03 07:29:03 +03:00
bld.SAMBA_BINARY('ldb_filter_attrs_in_place_test',
source='tests/ldb_filter_attrs_in_place_test.c',
deps='cmocka ldb ldb_tdb_err_map',
install=False)
2019-03-26 02:42:32 +03:00
bld.SAMBA_BINARY('ldb_key_value_sub_txn_tdb_test',
bld.SUBDIR('ldb_key_value',
'''ldb_kv_search.c
ldb_kv_index.c
ldb_kv_cache.c''') +
'tests/ldb_key_value_sub_txn_test.c',
cflags='-DTEST_BE=\"tdb\"',
2019-07-04 05:52:27 +03:00
deps='cmocka ldb ldb_tdb_err_map',
2019-03-26 02:42:32 +03:00
install=False)
2020-06-18 11:49:08 +03:00
# If both libldap and liblber are available, test ldb_ldap
# code for a regression of bz#14413 -- even if we don't build
# it ourselves and simply using the system version
if bld.env.LIB_LDAP and bld.env.LIB_LBER:
bld.SAMBA_BINARY('lldb_ldap_test',
source='tests/lldb_ldap.c',
deps='cmocka talloc lber ldap ldb',
install=False)
2017-01-11 07:10:19 +03:00
if bld.CONFIG_SET('HAVE_LMDB'):
bld.SAMBA_BINARY('ldb_mdb_mod_op_test',
source='tests/ldb_mod_op_test.c',
2018-03-08 06:47:59 +03:00
cflags='-DTEST_BE=\"mdb\" -DGUID_IDX=1 '
+ '-DTEST_LMDB=1',
deps='cmocka ldb lmdb',
2017-01-11 07:10:19 +03:00
install=False)
2018-02-02 05:30:53 +03:00
bld.SAMBA_BINARY('ldb_lmdb_test',
source='tests/ldb_lmdb_test.c',
deps='cmocka ldb',
install=False)
bld.SAMBA_BINARY('ldb_lmdb_size_test',
source='tests/ldb_lmdb_size_test.c',
deps='cmocka ldb',
install=False)
2017-01-11 07:10:19 +03:00
bld.SAMBA_BINARY('ldb_mdb_kv_ops_test',
source='tests/ldb_kv_ops_test.c',
2019-04-01 05:27:32 +03:00
cflags='-DTEST_BE=\"mdb\" -DTEST_LMDB=1',
2017-01-11 07:10:19 +03:00
deps='cmocka ldb',
install=False)
2019-03-26 02:42:32 +03:00
2020-03-16 05:18:12 +03:00
bld.SAMBA_BINARY('ldb_lmdb_free_list_test',
source='tests/ldb_lmdb_free_list_test.c',
cflags='-DTEST_BE=\"mdb\" -DTEST_LMDB=1',
deps='cmocka ldb',
install=False)
2019-03-26 02:42:32 +03:00
#
# We rely on the versions of the ldb_key_value functions included
# in ldb_key_value_sub_txn_test.c taking priority over the versions
# in the ldb_key_value shared library.
# If this turns out to not be the case, the dependencies will
# need to be unrolled, and all the source files included and the
# ldb_tdb module initialization code will need to be called
# manually.
bld.SAMBA_BINARY('ldb_key_value_sub_txn_mdb_test',
bld.SUBDIR('ldb_key_value',
'''ldb_kv_search.c
ldb_kv_index.c
ldb_kv_cache.c''') +
'tests/ldb_key_value_sub_txn_test.c',
cflags='-DTEST_BE=\"mdb\"',
2019-07-04 05:52:27 +03:00
deps='cmocka ldb ldb_tdb_err_map',
2019-03-26 02:42:32 +03:00
install=False)
2018-10-03 23:18:55 +03:00
else:
bld.SAMBA_BINARY('ldb_no_lmdb_test',
source='tests/ldb_no_lmdb_test.c',
deps='cmocka ldb',
install=False)
2017-01-11 07:10:19 +03:00
2010-04-04 16:11:30 +04:00
def test(ctx):
'''run ldb testsuite'''
2015-10-02 12:36:50 +03:00
env = samba_utils.LOAD_ENVIRONMENT()
ctx.env = env
2018-02-02 17:34:31 +03:00
test_prefix = "%s/st" % (Context.g_module.out)
2010-12-27 14:29:07 +03:00
shutil.rmtree(test_prefix, ignore_errors=True)
os.makedirs(test_prefix)
2011-02-21 08:46:58 +03:00
os.environ['TEST_DATA_PREFIX'] = test_prefix
2018-02-02 17:34:31 +03:00
os.environ['LDB_MODULES_PATH'] = Context.g_module.out + "/modules/ldb"
2018-10-03 23:18:55 +03:00
if env.HAVE_LMDB:
os.environ['HAVE_LMDB'] = '1'
else:
os.environ['HAVE_LMDB'] = '0'
2017-07-04 01:32:31 +03:00
samba_utils.ADD_LD_LIBRARY_PATH('bin/shared')
samba_utils.ADD_LD_LIBRARY_PATH('bin/shared/private')
2018-02-02 17:34:31 +03:00
cmd = 'tests/test-tdb.sh %s' % Context.g_module.out
2010-10-07 05:25:42 +04:00
ret = samba_utils.RUN_COMMAND(cmd)
print("testsuite returned %d" % ret)
2015-06-08 15:17:12 +03:00
tmp_dir = os.path.join(test_prefix, 'tmp')
if not os.path.exists(tmp_dir):
os.mkdir(tmp_dir)
pyret = samba_utils.RUN_PYTHON_TESTS(
2019-05-20 08:59:33 +03:00
['tests/python/api.py',
2021-02-11 06:28:43 +03:00
'tests/python/crash.py',
2019-05-20 08:59:33 +03:00
'tests/python/index.py',
'tests/python/repack.py'],
2015-06-08 15:17:12 +03:00
extra_env={'SELFTEST_PREFIX': test_prefix})
2022-11-18 10:49:29 +03:00
pyret = samba_utils.RUN_PYTHON_TESTS(
['tests/python/api.py',
'tests/python/crash.py',
'tests/python/index.py',
'tests/python/repack.py'],
extra_env={'SELFTEST_PREFIX': test_prefix,
2023-08-29 11:50:32 +03:00
'LC_ALL': 'tr_TR.UTF-8'}) or pyret
2015-06-08 15:17:12 +03:00
print("Python testsuite returned %d" % pyret)
2015-10-02 12:36:50 +03:00
2017-06-15 02:30:33 +03:00
cmocka_ret = 0
2017-01-11 07:10:19 +03:00
test_exes = ['test_ldb_qsort',
2018-07-03 06:16:56 +03:00
'test_ldb_dn',
2017-01-11 07:10:19 +03:00
'ldb_msg_test',
'ldb_tdb_mod_op_test',
'ldb_tdb_guid_mod_op_test',
'ldb_tdb_kv_ops_test',
2018-02-02 05:30:53 +03:00
'ldb_tdb_test',
2019-04-01 04:10:10 +03:00
'ldb_match_test',
2019-04-12 01:46:37 +03:00
'ldb_key_value_test',
2019-03-26 02:42:32 +03:00
# we currently don't run ldb_key_value_sub_txn_tdb_test as it
# tests the nested/sub transaction handling
# on operations which the TDB backend does not currently
# support
# 'ldb_key_value_sub_txn_tdb_test'
2023-02-15 04:08:57 +03:00
'ldb_parse_test',
'ldb_filter_attrs_test',
2023-03-03 07:29:03 +03:00
'ldb_filter_attrs_in_place_test',
2023-02-15 04:08:57 +03:00
]
2018-03-23 01:29:25 +03:00
2020-06-18 11:49:08 +03:00
# if LIB_LDAP and LIB_LBER defined, then we can test ldb_ldap backend
# behavior regression for bz#14413
if env.LIB_LDAP and env.LIB_LBER:
test_exes += ["lldb_ldap_test"]
2018-10-03 23:18:55 +03:00
if env.HAVE_LMDB:
test_exes += ['ldb_mdb_mod_op_test',
2020-03-17 00:12:49 +03:00
'ldb_lmdb_test',
# we don't want to run ldb_lmdb_size_test (which proves
# we can fit > 4G of data into the DB), it would fill up
# the disk on many of our test instances
'ldb_mdb_kv_ops_test',
'ldb_key_value_sub_txn_mdb_test',
'ldb_lmdb_free_list_test']
2018-10-03 23:18:55 +03:00
else:
test_exes += ['ldb_no_lmdb_test']
2017-01-11 07:10:19 +03:00
for test_exe in test_exes:
2018-02-02 17:34:31 +03:00
cmd = os.path.join(Context.g_module.out, test_exe)
2017-06-15 02:30:33 +03:00
cmocka_ret = cmocka_ret or samba_utils.RUN_COMMAND(cmd)
2015-10-02 12:36:50 +03:00
sys.exit(ret or pyret or cmocka_ret)
2010-04-05 03:58:23 +04:00
def dist():
'''makes a tarball for distribution'''
samba_dist.dist()
2010-11-03 04:09:23 +03:00
def reconfigure(ctx):
'''reconfigure if config scripts have changed'''
import samba_utils
samba_utils.reconfigure(ctx)