Skip to content

Commit

Permalink
gp: Ensure Messages policy preforms proper cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: David Mulder <[email protected]>
Reviewed-by: Douglas Bagnall <[email protected]>
Reviewed-by: Andrew Bartlett <[email protected]>
  • Loading branch information
dmulder authored and abartlet committed Jul 31, 2023
1 parent 03d796c commit 8a24829
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 34 deletions.
74 changes: 41 additions & 33 deletions python/samba/gp/gp_msgs_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,57 +15,65 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

import os
from samba.gp.gpclass import gp_pol_ext
from samba.gp.gpclass import gp_pol_ext, gp_misc_applier

class gp_msgs_ext(gp_pol_ext, gp_misc_applier):
def unapply(self, guid, cdir, attribute, value):
if attribute not in ['motd', 'issue']:
raise ValueError('"%s" is not a message attribute' % attribute)
data = self.parse_value(value)
mfile = os.path.join(cdir, attribute)
current = open(mfile, 'r').read() if os.path.exists(mfile) else ''
# Only overwrite the msg if it hasn't been modified. It may have been
# modified by another GPO.
if 'new_val' not in data or current.strip() == data['new_val'].strip():
msg = data['old_val']
with open(mfile, 'w') as w:
if msg:
w.write(msg)
else:
w.truncate()
self.cache_remove_attribute(guid, attribute)

def apply(self, guid, cdir, entries):
section_name = 'Software\\Policies\\Samba\\Unix Settings\\Messages'
for e in entries:
if e.keyname == section_name and e.data.strip():
if e.valuename not in ['motd', 'issue']:
raise ValueError('"%s" is not a message attribute' % \
e.valuename)
mfile = os.path.join(cdir, e.valuename)
if os.path.exists(mfile):
old_val = open(mfile, 'r').read()
else:
old_val = ''
# If policy is already applied, skip application
if old_val.strip() == e.data.strip():
return
with open(mfile, 'w') as w:
w.write(e.data)
data = self.generate_value(old_val=old_val, new_val=e.data)
self.cache_add_attribute(guid, e.valuename, data)

class gp_msgs_ext(gp_pol_ext):
def __str__(self):
return 'Unix Settings/Messages'

def process_group_policy(self, deleted_gpo_list, changed_gpo_list,
cdir='/etc'):
for guid, settings in deleted_gpo_list:
self.gp_db.set_guid(guid)
if str(self) in settings:
for attribute, msg in settings[str(self)].items():
if attribute == 'motd':
mfile = os.path.join(cdir, 'motd')
elif attribute == 'issue':
mfile = os.path.join(cdir, 'issue')
else:
continue
with open(mfile, 'w') as w:
if msg:
w.write(msg)
else:
w.truncate()
self.gp_db.delete(str(self), attribute)
self.gp_db.commit()
self.unapply(guid, cdir, attribute, msg)

for gpo in changed_gpo_list:
if gpo.file_sys_path:
section_name = 'Software\\Policies\\Samba\\Unix Settings\\Messages'
self.gp_db.set_guid(gpo.name)
pol_file = 'MACHINE/Registry.pol'
path = os.path.join(gpo.file_sys_path, pol_file)
pol_conf = self.parse(path)
if not pol_conf:
continue
for e in pol_conf.entries:
if e.keyname == section_name and e.data.strip():
if e.valuename == 'motd':
mfile = os.path.join(cdir, 'motd')
elif e.valuename == 'issue':
mfile = os.path.join(cdir, 'issue')
else:
continue
if os.path.exists(mfile):
old_val = open(mfile, 'r').read()
else:
old_val = ''
with open(mfile, 'w') as w:
w.write(e.data)
self.gp_db.store(str(self), e.valuename, old_val)
self.gp_db.commit()
self.apply(gpo.name, cdir, pol_conf.entries)

def rsop(self, gpo):
output = {}
Expand Down
1 change: 0 additions & 1 deletion selftest/knownfail.d/gpo
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
^samba.tests.gpo.samba.tests.gpo.GPOTests.test_gp_motd
^samba.tests.gpo.samba.tests.gpo.GPOTests.test_vgp_motd
^samba.tests.gpo.samba.tests.gpo.GPOTests.test_vgp_issue
^samba.tests.gpo.samba.tests.gpo.GPOTests.test_smb_conf_ext
Expand Down

0 comments on commit 8a24829

Please sign in to comment.