Skip to content

Commit

Permalink
waf: Require MIT Kerberos 1.15.1 for Samba AD
Browse files Browse the repository at this point in the history
Are build without AD DC still only requried MIT Kerberos 1.9.

Signed-off-by: Andreas Schneider <[email protected]>
Reviewed-by: Andrew Bartlet <[email protected]>
Reviewed-by: Jeremy Allison <[email protected]>
  • Loading branch information
cryptomilk committed Apr 29, 2017
1 parent b161e5c commit a0464e3
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 11 deletions.
4 changes: 2 additions & 2 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ def set_options(opt):
opt.samba_add_onoff_option('pthreadpool', with_name="enable", without_name="disable", default=True)

opt.add_option('--with-system-mitkrb5',
help='enable system MIT krb5 build (includes Samba 4 client and Samba 3 code base).'+
help='build Samba with system MIT Kerberos. ' +
'You may specify list of paths where Kerberos is installed (e.g. /usr/local /usr/kerberos) to search krb5-config',
action='callback', callback=system_mitkrb5_callback, dest='with_system_mitkrb5', default=False)

opt.add_option('--without-ad-dc',
help='disable AD DC functionality (enables Samba 4 client and Samba 3 code base).',
help='disable AD DC functionality (enables only Samba FS (File Server, Winbind, NMBD) and client utilities.',
action='store_true', dest='without_ad_dc', default=False)

opt.add_option('--with-ntvfs-fileserver',
Expand Down
30 changes: 21 additions & 9 deletions wscript_configure_system_mitkrb5
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ import Logs, Options, sys
# Check for kerberos
have_gssapi=False

krb5_min_required_version = "1.9"

# Requried versions
krb5_required_version = krb5_min_required_version
if conf.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
krb5_required_version = "1.15.1"

def parse_version(v):
return tuple(map(int, (v.split("."))))

def krb5_define_syslib(conf, lib, deps):
found = 'FOUND_SYSTEMLIB_' + lib
if found in conf.env:
Expand Down Expand Up @@ -44,19 +54,21 @@ if conf.env.KRB5_CONFIG:
if conf.env.KRB5_VENDOR != 'heimdal':
conf.define('USING_SYSTEM_KRB5', 1)
del conf.env.HEIMDAL_KRB5_CONFIG
kversion = conf.cmd_and_log("%(path)s --version" % dict(path=conf.env.KRB5_CONFIG), dict()).strip()
kversion_split = kversion.split(' ')[-1].split('.')
krb5_conf_version = conf.cmd_and_log("%(path)s --version" % dict(path=conf.env.KRB5_CONFIG), dict()).strip()

krb5_version = krb5_conf_version.split()[-1]

# drop '-prerelease' suffix
if kversion_split[-1].find('-') > 0:
last_digit = kversion_split[-1].split('-')[0]
kversion_split[-1] = last_digit
kversion_check = map(int, kversion_split)
if kversion_check < [1, 9]:
Logs.error('ERROR: MIT krb5 build requires at least 1.9.0. %s is found and cannot be used' % (kversion))
if krb5_version.find('-') > 0:
krb5_version = krb5_version.split("-")[0]

if parse_version(krb5_version) < parse_version(krb5_required_version):
Logs.error('ERROR: MIT KRB5 build with Samba AD requires at least %s. %s has been found and cannot be used' % (krb5_required_version, krb5_version))
Logs.error('ERROR: If you want to just build Samba FS use the option --without-ad-dc which requires version %s' % (krb5_min_required_version))
Logs.error('ERROR: You may try to build with embedded Heimdal Kerebros by not specifying --with-system-mitkrb5')
sys.exit(1)
else:
Logs.info('%s is detected, MIT krb5 build can proceed' % (kversion))
Logs.info('MIT Kerberos %s detected, MIT krb5 build can proceed' % (krb5_version))

conf.CHECK_CFG(args="--cflags --libs", package="com_err", uselib_store="com_err")
conf.CHECK_FUNCS_IN('_et_list', 'com_err')
Expand Down

0 comments on commit a0464e3

Please sign in to comment.