1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

dsdb encrypted_secrets tests: Allow "ldb://" in file path

When creating a new user and specifying the local file path of the
sam.ldb DB, it's possible to create an account that you can't actually
login with.

This commit contains tests to verify the bug.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13653

Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Gary Lockyer 2018-10-15 16:01:47 +13:00 committed by Andrew Bartlett
parent b6e45fb479
commit e1eee614ca
6 changed files with 266 additions and 4 deletions

View File

@ -0,0 +1,212 @@
# Black box tests verify bug 13653
#
# Copyright (C) Catalyst.Net Ltd'. 2018
#
# 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; either version 3 of the License, or
# (at your option) any later version.
#
# 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.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Blackbox test verifying bug 13653
https://bugzilla.samba.org/show_bug.cgi?id=13653
When creating a new user and specifying the local filepath of the sam.ldb DB,
it's possible to create an account that you can't actually login with.
This only happens if the DB is using encrypted secrets and you specify "ldb://"
in the sam.ldb path, e.g. "-H ldb://st/ad_dc/private/sam.ldb".
The user account will be created, but its secrets will not be encrypted.
Attempts to login as the user will then be rejected due to invalid credentials.
We think this may also cause replication/joins to break.
You do get a warning about "No encrypted secrets key file" when this happens,
although the reason behind this message is not obvious. Specifying a "tdb://"
prefix, or not specifying a prefix, works fine.
Example of the problem below using the ad_dc testenv.
addc$ bin/samba-tool user create tdb-user pass12#
-H tdb://st/ad_dc/private/sam.ldb
User 'tdb-user' created successfully
# HERE: using the "ldb://" prefix generates a warning, but the user is still
# created successfully.
addc$ bin/samba-tool user create ldb-user pass12#
-H ldb://st/ad_dc/private/sam.ldb
No encrypted secrets key file. Secret attributes will not be encrypted or
decrypted
User 'ldb-user' created successfully
addc$ bin/samba-tool user create noprefix-user pass12#
-H st/ad_dc/private/sam.ldb
User 'noprefix-user' created successfully
addc$ bin/ldbsearch -H ldap://$SERVER -Utdb-user%pass12# '(cn=tdb-user)' dn
# record 1
dn: CN=tdb-user,CN=Users,DC=addom,DC=samba,DC=example,DC=com
# Referral
ref: ldap://addom.samba.example.com/CN=Configuration,DC=addom,DC=samba,
DC=example,DC=com
# Referral
ref: ldap://addom.samba.example.com/DC=DomainDnsZones,DC=addom,DC=samba,
DC=example,DC=com
# Referral
ref: ldap://addom.samba.example.com/DC=ForestDnsZones,DC=addom,DC=samba,
DC=example,DC=com
# returned 4 records
# 1 entries
# 3 referrals
# HERE: can't login as the user created with "ldb://" prefix
addc$ bin/ldbsearch -H ldap://$SERVER -Uldb-user%pass12# '(cn=ldb-user)' dn
Wrong username or password: kinit for ldb-user@ADDOM.SAMBA.EXAMPLE.COM failed
(Client not found in Kerberos database)
Failed to bind - LDAP error 49 LDAP_INVALID_CREDENTIALS
- <8009030C: LdapErr: DSID-0C0904DC,
comment: AcceptSecurityContext error, data 54e, v1db1> <>
Failed to connect to 'ldap://addc' with backend
'ldap': LDAP error 49 LDAP_INVALID_CREDENTIALS
- <8009030C: LdapErr: DSID-0C0904DC,
comment: AcceptSecurityContext error, data 54e, v1db1> <>
Failed to connect to ldap://addc - LDAP error 49 LDAP_INVALID_CREDENTIALS
- <8009030C: LdapErr: DSID-0C0904DC,
comment: AcceptSecurityContext error, data 54e, v1db1> <>
addc$ bin/ldbsearch -H ldap://$SERVER -Unoprefix-user%pass12#
'(cn=noprefix-user)' dn
# record 1
dn: CN=noprefix-user,CN=Users,DC=addom,DC=samba,DC=example,DC=com
# Referral
ref: ldap://addom.samba.example.com/CN=Configuration,DC=addom,DC=samba,
DC=example,DC=com
# Referral
ref: ldap://addom.samba.example.com/DC=DomainDnsZones,DC=addom,DC=samba,
DC=example,DC=com
# Referral
ref: ldap://addom.samba.example.com/DC=ForestDnsZones,DC=addom,DC=samba,
DC=example,DC=com
# returned 4 records
# 1 entries
# 3 referrals
"""
from samba.tests import (
BlackboxTestCase,
BlackboxProcessError,
delete_force,
env_loadparm)
from samba.credentials import Credentials
from samba.samdb import SamDB
from samba.auth import system_session
from os import environ
class Bug13653Tests(BlackboxTestCase):
# Open a local connection to the SamDB
# and load configuration from the OS environment.
def setUp(self):
super(Bug13653Tests, self).setUp()
self.env = environ["TEST_ENV"]
self.server = environ["SERVER"]
self.prefix = environ["PREFIX_ABS"]
lp = env_loadparm()
creds = Credentials()
session = system_session()
creds.guess(lp)
self.ldb = SamDB(session_info=session,
credentials=creds,
lp=lp)
# Delete the user account created by the test case.
# The user name is in self.user
def tearDown(self):
super(Bug13653Tests, self).tearDown()
try:
dn = "CN=%s,CN=Users,%s" % (self.user, self.ldb.domain_dn())
delete_force(self.ldb, dn)
except Exception as e:
# We ignore any exceptions deleting the user in tearDown
# this allows the known fail mechanism to work for this test
# so the test can be committed before the fix.
# otherwise this delete fails with
# Error(11) unpacking encrypted secret, data possibly corrupted
# or altered
pass
# Delete the user account created by the test case.
# The user name is in self.user
def delete_user(self):
dn = "CN=%s,CN=Users,%s" % (self.user, self.ldb.domain_dn())
try:
delete_force(self.ldb, dn)
except Exception as e:
self.fail(str(e))
def _test_scheme(self, scheme):
"""Ensure a user can be created by samba-tool with the supplied scheme
and that that user can logon."""
self.delete_user()
password = self.random_password()
db_path = "%s/%s/%s/private/sam.ldb" % (scheme, self.prefix, self.env)
try:
command =\
"bin/samba-tool user create %s %s -H %s" % (
self.user, password, db_path)
self.check_run(command)
command =\
"bin/ldbsearch -H ldap://%s/ -U%s%%%s '(cn=%s)' dn" % (
self.server, self.user, password, self.user)
self.check_run(command)
except BlackboxProcessError as e:
self.fail(str(e))
def test_tdb_scheme(self):
"""Ensure a user can be created by samba-tool with the "tbd://" scheme
and that that user can logon."""
self.user = "TDB_USER"
self._test_scheme("tdb://")
def test_mdb_scheme(self):
"""Ensure a user can be created by samba-tool with the "mdb://" scheme
and that that user can logon.
NOTE: this test is currently in knownfail.d/encrypted_secrets as
sam.ldb is currently a tdb even if the lmdb backend is
selected
"""
self.user = "MDB_USER"
self._test_scheme("mdb://")
def test_ldb_scheme(self):
"""Ensure a user can be created by samba-tool with the "ldb://" scheme
and that that user can logon."""
self.user = "LDB_USER"
self._test_scheme("ldb://")

View File

@ -0,0 +1,14 @@
^samba.tests.blackbox.bug13653.samba.tests.blackbox.bug13653.Bug13653Tests.test_ldb_scheme
^samba.tests.blackbox.bug13653.python3.samba.tests.blackbox.bug13653.Bug13653Tests.test_ldb_scheme
^samba4.dsdb.samdb.ldb_modules.encrypted_secrets.mdb.test_key_file
^samba4.dsdb.samdb.ldb_modules.encrypted_secrets.mdb.test_key_file_short_key
^samba4.dsdb.samdb.ldb_modules.encrypted_secrets.mdb.test_key_file_long_key
^samba4.dsdb.samdb.ldb_modules.encrypted_secrets.mdb.test_gnutls_value_encryption
^samba4.dsdb.samdb.ldb_modules.encrypted_secrets.mdb.test_gnutls_altered_header
^samba4.dsdb.samdb.ldb_modules.encrypted_secrets.mdb.test_gnutls_altered_data
^samba4.dsdb.samdb.ldb_modules.encrypted_secrets.mdb.test_gnutls_altered_iv
^samba4.dsdb.samdb.ldb_modules.encrypted_secrets.mdb.test_samba_value_encryption
^samba4.dsdb.samdb.ldb_modules.encrypted_secrets.mdb.test_samba_altered_header
^samba4.dsdb.samdb.ldb_modules.encrypted_secrets.mdb.test_samba_altered_data
^samba4.dsdb.samdb.ldb_modules.encrypted_secrets.mdb.test_samba_altered_iv
^samba4.dsdb.samdb.ldb_modules.encrypted_secrets.mdb.test_message_encryption_decryption

View File

@ -8,3 +8,9 @@
^samba.tests.encrypted_secrets.samba.tests.encrypted_secrets.EncryptedSecretsTests.test_required_features\(fl2000dc:local\)
^samba.tests.encrypted_secrets.python3.samba.tests.encrypted_secrets.EncryptedSecretsTests.test_encrypted_secrets\(fl2000dc:local\)
^samba.tests.encrypted_secrets.python3.samba.tests.encrypted_secrets.EncryptedSecretsTests.test_required_features\(fl2000dc:local\)
#
# The tests for bug 13563 https://bugzilla.samba.org/show_bug.cgi?id=13653
# should fail in the mdb case, as sam.ldb is currently a tdb file.
#
^samba.tests.blackbox.bug13653.python3.samba.tests.blackbox.bug13653.Bug13653Tests.test_mdb_scheme
^samba.tests.blackbox.bug13653.samba.tests.blackbox.bug13653.Bug13653Tests.test_mdb_scheme

View File

@ -27,7 +27,6 @@ int ldb_encrypted_secrets_module_init(const char *version);
#define TEST_ENCRYPTED_SECRETS
#include "../encrypted_secrets.c"
#define TEST_BE "tdb"
struct ldbtest_ctx {
struct tevent_context *ev;
struct ldb_context *ldb;

View File

@ -28,8 +28,9 @@ bld.SAMBA_BINARY('test_unique_object_sids',
DSDB_MODULE_HELPERS
''',
install=False)
bld.SAMBA_BINARY('test_encrypted_secrets',
bld.SAMBA_BINARY('test_encrypted_secrets_tdb',
source='tests/test_encrypted_secrets.c',
cflags='-DTEST_BE=\"tdb\"',
deps='''
talloc
samba-util
@ -40,6 +41,20 @@ bld.SAMBA_BINARY('test_encrypted_secrets',
DSDB_MODULE_HELPERS
''',
install=False)
if conf.env.HAVE_LMDB:
bld.SAMBA_BINARY('test_encrypted_secrets_mdb',
source='tests/test_encrypted_secrets.c',
cflags='-DTEST_BE=\"mdb\"',
deps='''
talloc
samba-util
samdb-common
samdb
cmocka
gnutls
DSDB_MODULE_HELPERS
''',
install=False)
if bld.AD_DC_BUILD_IS_ENABLED():
bld.PROCESS_SEPARATE_RULE("server")

View File

@ -1186,12 +1186,28 @@ for env in ["ad_dc_ntvfs", "ad_dc", "fl2000dc", "fl2003dc", "fl2008r2dc",
'renamedc', 'offlinebackupdc', 'labdc']:
plantestsuite("samba4.blackbox.dbcheck(%s)" % env, env + ":local", ["PYTHON=%s" % python, os.path.join(bbdir, "dbcheck.sh"), '$PREFIX/provision', configuration])
#
# Tests to verify bug 13653 https://bugzilla.samba.org/show_bug.cgi?id=13653
# ad_dc has an lmdb backend, ad_dc_ntvfs has a tdb backend.
#
planoldpythontestsuite("ad_dc_ntvfs:local",
"samba.tests.blackbox.bug13653",
extra_args=['-U"$USERNAME%$PASSWORD"'],
environ={'TEST_ENV': 'ad_dc_ntvfs'},
py3_compatible=True)
planoldpythontestsuite("ad_dc:local",
"samba.tests.blackbox.bug13653",
extra_args=['-U"$USERNAME%$PASSWORD"'],
environ={'TEST_ENV': 'ad_dc'},
py3_compatible=True)
# cmocka tests not requiring a specific environment
#
plantestsuite("samba4.dsdb.samdb.ldb_modules.unique_object_sids", "none",
[os.path.join(bindir(), "test_unique_object_sids")])
plantestsuite("samba4.dsdb.samdb.ldb_modules.encrypted_secrets", "none",
[os.path.join(bindir(), "test_encrypted_secrets")])
plantestsuite("samba4.dsdb.samdb.ldb_modules.encrypted_secrets.tdb", "none",
[os.path.join(bindir(), "test_encrypted_secrets_tdb")])
plantestsuite("samba4.dsdb.samdb.ldb_modules.encrypted_secrets.mdb", "none",
[os.path.join(bindir(), "test_encrypted_secrets_mdb")])
plantestsuite("lib.audit_logging.audit_logging", "none",
[os.path.join(bindir(), "audit_logging_test")])
plantestsuite("lib.audit_logging.audit_logging.errors", "none",