mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
fb6c250bde
Adds testing for the gp_ext register and unregister functions, as well as testing the list function. Signed-off-by: David Mulder <dmulder@suse.com> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
152 lines
6.7 KiB
Python
152 lines
6.7 KiB
Python
# Unix SMB/CIFS implementation. Tests for smb manipulation
|
|
# Copyright (C) David Mulder <dmulder@suse.com> 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/>.
|
|
|
|
import os
|
|
from samba import gpo, tests
|
|
from samba.gpclass import register_gp_extension, list_gp_extensions, \
|
|
unregister_gp_extension
|
|
from samba.param import LoadParm
|
|
from samba.gpclass import check_refresh_gpo_list, check_safe_path, \
|
|
check_guid, parse_gpext_conf, atomic_write_conf
|
|
|
|
poldir = r'\\addom.samba.example.com\sysvol\addom.samba.example.com\Policies'
|
|
dspath = 'CN=Policies,CN=System,DC=addom,DC=samba,DC=example,DC=com'
|
|
gpt_data = '[General]\nVersion=%d'
|
|
|
|
class GPOTests(tests.TestCase):
|
|
def setUp(self):
|
|
super(GPOTests, self).setUp()
|
|
self.server = os.environ["SERVER"]
|
|
self.lp = LoadParm()
|
|
self.lp.load_default()
|
|
self.creds = self.insta_creds(template=self.get_credentials())
|
|
|
|
def tearDown(self):
|
|
super(GPOTests, self).tearDown()
|
|
|
|
def test_gpo_list(self):
|
|
global poldir, dspath
|
|
ads = gpo.ADS_STRUCT(self.server, self.lp, self.creds)
|
|
if ads.connect():
|
|
gpos = ads.get_gpo_list(self.creds.get_username())
|
|
guid = '{31B2F340-016D-11D2-945F-00C04FB984F9}'
|
|
names = ['Local Policy', guid]
|
|
file_sys_paths = [None, '%s\\%s' % (poldir, guid)]
|
|
ds_paths = [None, 'CN=%s,%s' % (guid, dspath)]
|
|
for i in range(0, len(gpos)):
|
|
self.assertEquals(gpos[i].name, names[i],
|
|
'The gpo name did not match expected name %s' % gpos[i].name)
|
|
self.assertEquals(gpos[i].file_sys_path, file_sys_paths[i],
|
|
'file_sys_path did not match expected %s' % gpos[i].file_sys_path)
|
|
self.assertEquals(gpos[i].ds_path, ds_paths[i],
|
|
'ds_path did not match expected %s' % gpos[i].ds_path)
|
|
|
|
|
|
def test_gpo_ads_does_not_segfault(self):
|
|
try:
|
|
ads = gpo.ADS_STRUCT(self.server, 42, self.creds)
|
|
except:
|
|
pass
|
|
|
|
def test_gpt_version(self):
|
|
global gpt_data
|
|
local_path = self.lp.cache_path('gpo_cache')
|
|
policies = 'ADDOM.SAMBA.EXAMPLE.COM/POLICIES'
|
|
guid = '{31B2F340-016D-11D2-945F-00C04FB984F9}'
|
|
gpo_path = os.path.join(local_path, policies, guid)
|
|
old_vers = gpo.gpo_get_sysvol_gpt_version(gpo_path)[1]
|
|
|
|
with open(os.path.join(gpo_path, 'GPT.INI'), 'w') as gpt:
|
|
gpt.write(gpt_data % 42)
|
|
self.assertEquals(gpo.gpo_get_sysvol_gpt_version(gpo_path)[1], 42,
|
|
'gpo_get_sysvol_gpt_version() did not return the expected version')
|
|
|
|
with open(os.path.join(gpo_path, 'GPT.INI'), 'w') as gpt:
|
|
gpt.write(gpt_data % old_vers)
|
|
self.assertEquals(gpo.gpo_get_sysvol_gpt_version(gpo_path)[1], old_vers,
|
|
'gpo_get_sysvol_gpt_version() did not return the expected version')
|
|
|
|
def test_check_refresh_gpo_list(self):
|
|
cache = self.lp.cache_path('gpo_cache')
|
|
ads = gpo.ADS_STRUCT(self.server, self.lp, self.creds)
|
|
if ads.connect():
|
|
gpos = ads.get_gpo_list(self.creds.get_username())
|
|
check_refresh_gpo_list(self.server, self.lp, self.creds, gpos)
|
|
|
|
self.assertTrue(os.path.exists(cache),
|
|
'GPO cache %s was not created' % cache)
|
|
|
|
guid = '{31B2F340-016D-11D2-945F-00C04FB984F9}'
|
|
gpt_ini = os.path.join(cache, 'ADDOM.SAMBA.EXAMPLE.COM/POLICIES',
|
|
guid, 'GPT.INI')
|
|
self.assertTrue(os.path.exists(gpt_ini),
|
|
'GPT.INI was not cached for %s' % guid)
|
|
|
|
def test_check_refresh_gpo_list_malicious_paths(self):
|
|
# the path cannot contain ..
|
|
path = '/usr/local/samba/var/locks/sysvol/../../../../../../root/'
|
|
self.assertRaises(OSError, check_safe_path, path)
|
|
|
|
self.assertEqual(check_safe_path('/etc/passwd'), 'etc/passwd')
|
|
self.assertEqual(check_safe_path('\\\\etc/\\passwd'), 'etc/passwd')
|
|
|
|
# there should be no backslashes used to delineate paths
|
|
before = 'sysvol/addom.samba.example.com\\Policies/' \
|
|
'{31B2F340-016D-11D2-945F-00C04FB984F9}\\GPT.INI'
|
|
after = 'addom.samba.example.com/Policies/' \
|
|
'{31B2F340-016D-11D2-945F-00C04FB984F9}/GPT.INI'
|
|
result = check_safe_path(before)
|
|
self.assertEquals(result, after, 'check_safe_path() didn\'t' \
|
|
' correctly convert \\ to /')
|
|
|
|
def test_gpt_ext_register(self):
|
|
this_path = os.path.dirname(os.path.realpath(__file__))
|
|
samba_path = os.path.realpath(os.path.join(this_path, '../../../'))
|
|
ext_path = os.path.join(samba_path, 'python/samba/gp_sec_ext.py')
|
|
ext_guid = '{827D319E-6EAC-11D2-A4EA-00C04F79F83A}'
|
|
ret = register_gp_extension(ext_guid, 'gp_sec_ext', ext_path,
|
|
smb_conf=self.lp.configfile,
|
|
machine=True, user=False)
|
|
self.assertTrue(ret, 'Failed to register a gp ext')
|
|
gp_exts = list_gp_extensions(self.lp.configfile)
|
|
self.assertTrue(ext_guid in gp_exts.keys(),
|
|
'Failed to list gp exts')
|
|
self.assertEquals(gp_exts[ext_guid]['DllName'], ext_path,
|
|
'Failed to list gp exts')
|
|
|
|
unregister_gp_extension(ext_guid)
|
|
gp_exts = list_gp_extensions(self.lp.configfile)
|
|
self.assertTrue(ext_guid not in gp_exts.keys(),
|
|
'Failed to unregister gp exts')
|
|
|
|
self.assertTrue(check_guid(ext_guid), 'Failed to parse valid guid')
|
|
self.assertFalse(check_guid('AAAAAABBBBBBBCCC'), 'Parsed invalid guid')
|
|
|
|
lp, parser = parse_gpext_conf(self.lp.configfile)
|
|
self.assertTrue(lp and parser, 'parse_gpext_conf() invalid return')
|
|
parser.add_section('test_section')
|
|
parser.set('test_section', 'test_var', ext_guid)
|
|
atomic_write_conf(lp, parser)
|
|
|
|
lp, parser = parse_gpext_conf(self.lp.configfile)
|
|
self.assertTrue('test_section' in parser.sections(),
|
|
'test_section not found in gpext.conf')
|
|
self.assertEquals(parser.get('test_section', 'test_var'), ext_guid,
|
|
'Failed to find test variable in gpext.conf')
|
|
parser.remove_section('test_section')
|
|
atomic_write_conf(lp, parser)
|
|
|