mirror of
https://github.com/samba-team/samba.git
synced 2025-04-30 18:53:31 +03:00
Implementation of subcommands - show, getlink, setlink, dellink, getinheritance, setinheritance Signed-off-by: Andrew Tridgell <tridge@samba.org>
638 lines
22 KiB
Python
638 lines
22 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# implement samba_tool gpo commands
|
|
#
|
|
# Copyright Andrew Tridgell 2010
|
|
# Copyright Giampaolo Lauria 2011 <lauria2@yahoo.com>
|
|
#
|
|
# based on C implementation by Guenther Deschner and Wilco Baan Hofman
|
|
#
|
|
# 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 samba.getopt as options
|
|
import ldb
|
|
|
|
from samba.auth import system_session
|
|
from samba.netcmd import (
|
|
Command,
|
|
CommandError,
|
|
Option,
|
|
SuperCommand,
|
|
)
|
|
from samba.samdb import SamDB
|
|
from samba import drs_utils, nttime2string, dsdb, dcerpc
|
|
from samba.dcerpc import misc
|
|
from samba.ndr import ndr_unpack
|
|
import samba.security
|
|
import samba.auth
|
|
from samba.auth import AUTH_SESSION_INFO_DEFAULT_GROUPS, AUTH_SESSION_INFO_AUTHENTICATED, AUTH_SESSION_INFO_SIMPLE_PRIVILEGES
|
|
|
|
def samdb_connect(ctx):
|
|
'''make a ldap connection to the server'''
|
|
try:
|
|
ctx.samdb = SamDB(url=ctx.url,
|
|
session_info=system_session(),
|
|
credentials=ctx.creds, lp=ctx.lp)
|
|
except Exception, e:
|
|
raise CommandError("LDAP connection to %s failed " % ctx.url, e)
|
|
|
|
|
|
def attr_default(msg, attrname, default):
|
|
'''get an attribute from a ldap msg with a default'''
|
|
if attrname in msg:
|
|
return msg[attrname][0]
|
|
return default
|
|
|
|
|
|
def flags_string(flags, value):
|
|
'''return a set of flags as a string'''
|
|
if value == 0:
|
|
return 'NONE'
|
|
ret = ''
|
|
for (str, val) in flags:
|
|
if val & value:
|
|
ret += str + ' '
|
|
value &= ~val
|
|
if value != 0:
|
|
ret += '0x%08x' % value
|
|
return ret.rstrip()
|
|
|
|
|
|
def parse_gplink(gplink):
|
|
'''parse a gPLink into an array of dn and options'''
|
|
ret = []
|
|
a = gplink.split(']')
|
|
for g in a:
|
|
if not g:
|
|
continue
|
|
d = g.split(';')
|
|
if len(d) != 2 or not d[0].startswith("[LDAP://"):
|
|
raise RuntimeError("Badly formed gPLink '%s'" % g)
|
|
ret.append({ 'dn' : d[0][8:], 'options' : int(d[1])})
|
|
return ret
|
|
|
|
|
|
def encode_gplink(gplist):
|
|
'''Encode an array of dn and options into gPLink string'''
|
|
ret = ''
|
|
for g in gplist:
|
|
ret += "[LDAP://%s;%d]" % (g['dn'], g['options'])
|
|
return ret
|
|
|
|
|
|
class cmd_listall(Command):
|
|
"""list all GPOs"""
|
|
|
|
synopsis = "%prog gpo listall"
|
|
|
|
takes_options = [
|
|
Option("-H", "--URL", help="LDB URL for database or target server", type=str,
|
|
metavar="URL", dest="H")
|
|
]
|
|
|
|
def run(self, H=None, sambaopts=None, credopts=None, versionopts=None):
|
|
|
|
self.url = H
|
|
self.lp = sambaopts.get_loadparm()
|
|
|
|
self.creds = credopts.get_credentials(self.lp, fallback_machine=True)
|
|
|
|
samdb_connect(self)
|
|
|
|
policies_dn = self.samdb.get_default_basedn()
|
|
policies_dn.add_child(ldb.Dn(self.samdb, "CN=Policies,CN=System"))
|
|
|
|
gpo_flags = [
|
|
("GPO_FLAG_USER_DISABLE", dsdb.GPO_FLAG_USER_DISABLE ),
|
|
( "GPO_FLAG_MACHINE_DISABLE", dsdb.GPO_FLAG_MACHINE_DISABLE ) ]
|
|
|
|
try:
|
|
msg = self.samdb.search(base=policies_dn, scope=ldb.SCOPE_ONELEVEL,
|
|
expression="(objectClass=groupPolicyContainer)",
|
|
attrs=['nTSecurityDescriptor',
|
|
'versionNumber',
|
|
'flags',
|
|
'name',
|
|
'displayName',
|
|
'gPCFileSysPath'])
|
|
except Exception, e:
|
|
raise CommandError("Failed to list policies in %s" % policies_dn, e)
|
|
for m in msg:
|
|
print("GPO : %s" % m['name'][0])
|
|
print("display name : %s" % m['displayName'][0])
|
|
print("path : %s" % m['gPCFileSysPath'][0])
|
|
print("dn : %s" % m.dn)
|
|
print("version : %s" % attr_default(m, 'versionNumber', '0'))
|
|
print("flags : %s" % flags_string(gpo_flags, int(attr_default(m, 'flags', 0))))
|
|
print("")
|
|
|
|
|
|
class cmd_list(Command):
|
|
"""list GPOs for an account"""
|
|
|
|
synopsis = "%prog gpo list <username>"
|
|
|
|
takes_args = [ 'username' ]
|
|
|
|
takes_options = [
|
|
Option("-H", "--URL", help="LDB URL for database or target server", type=str,
|
|
metavar="URL", dest="H")
|
|
]
|
|
|
|
def run(self, username, H=None, sambaopts=None, credopts=None, versionopts=None):
|
|
|
|
self.url = H
|
|
self.lp = sambaopts.get_loadparm()
|
|
|
|
self.creds = credopts.get_credentials(self.lp, fallback_machine=True)
|
|
|
|
samdb_connect(self)
|
|
|
|
try:
|
|
msg = self.samdb.search(expression='(&(|(samAccountName=%s)(samAccountName=%s$))(objectClass=User))' %
|
|
(username,username))
|
|
user_dn = msg[0].dn
|
|
except Exception, e:
|
|
raise CommandError("Failed to find account %s" % username, e)
|
|
|
|
# check if its a computer account
|
|
try:
|
|
msg = self.samdb.search(base=user_dn, scope=ldb.SCOPE_BASE, attrs=['objectClass'])[0]
|
|
is_computer = 'computer' in msg['objectClass']
|
|
except Exception, e:
|
|
raise CommandError("Failed to find objectClass for user %s" % username, e)
|
|
|
|
session_info_flags = ( AUTH_SESSION_INFO_DEFAULT_GROUPS |
|
|
AUTH_SESSION_INFO_AUTHENTICATED )
|
|
|
|
# When connecting to a remote server, don't look up the local privilege DB
|
|
if self.url is not None and self.url.startswith('ldap'):
|
|
session_info_flags |= AUTH_SESSION_INFO_SIMPLE_PRIVILEGES
|
|
|
|
session = samba.auth.user_session(self.samdb, lp_ctx=self.lp, dn=user_dn,
|
|
session_info_flags=session_info_flags)
|
|
|
|
token = session.security_token
|
|
|
|
gpos = []
|
|
|
|
inherit = True
|
|
dn = ldb.Dn(self.samdb, str(user_dn)).parent()
|
|
while True:
|
|
msg = self.samdb.search(base=dn, scope=ldb.SCOPE_BASE, attrs=['gPLink', 'gPOptions'])[0]
|
|
if 'gPLink' in msg:
|
|
glist = parse_gplink(msg['gPLink'][0])
|
|
for g in glist:
|
|
if not inherit and not (g['options'] & dsdb.GPLINK_OPT_ENFORCE):
|
|
continue
|
|
if g['options'] & dsdb.GPLINK_OPT_DISABLE:
|
|
continue
|
|
|
|
try:
|
|
gmsg = self.samdb.search(base=g['dn'], scope=ldb.SCOPE_BASE,
|
|
attrs=['flags', 'ntSecurityDescriptor'])
|
|
except Exception:
|
|
print "Failed to fetch gpo object %s" % g['dn']
|
|
continue
|
|
|
|
secdesc_ndr = gmsg[0]['ntSecurityDescriptor'][0]
|
|
secdesc = ndr_unpack(dcerpc.security.descriptor, secdesc_ndr)
|
|
|
|
try:
|
|
samba.security.access_check(secdesc, token,
|
|
dcerpc.security.SEC_STD_READ_CONTROL |
|
|
dcerpc.security.SEC_ADS_LIST |
|
|
dcerpc.security.SEC_ADS_READ_PROP)
|
|
except RuntimeError:
|
|
print "Failed access check on %s" % msg.dn
|
|
continue
|
|
|
|
# check the flags on the GPO
|
|
flags = int(attr_default(gmsg[0], 'flags', 0))
|
|
if is_computer and (flags & dsdb.GPO_FLAG_MACHINE_DISABLE):
|
|
continue
|
|
if not is_computer and (flags & dsdb.GPO_FLAG_USER_DISABLE):
|
|
continue
|
|
gpos.append(g)
|
|
|
|
# check if this blocks inheritance
|
|
gpoptions = int(attr_default(msg, 'gPOptions', 0))
|
|
if gpoptions & dsdb.GPO_BLOCK_INHERITANCE:
|
|
inherit = False
|
|
|
|
if dn == self.samdb.get_default_basedn():
|
|
break
|
|
dn = dn.parent()
|
|
|
|
if is_computer:
|
|
msg_str = 'computer'
|
|
else:
|
|
msg_str = 'user'
|
|
|
|
print "GPOs for %s %s" % (msg_str, username)
|
|
for g in gpos:
|
|
print "\t%s" % g['dn']
|
|
|
|
|
|
class cmd_show(Command):
|
|
"""Show information for a GPO"""
|
|
|
|
synopsis = "%prog gpo show <dn>"
|
|
|
|
takes_optiongroups = {
|
|
"sambaopts": options.SambaOptions,
|
|
"versionopts": options.VersionOptions,
|
|
"credopts": options.CredentialsOptions,
|
|
}
|
|
|
|
takes_args = [ 'dn' ]
|
|
|
|
takes_options = [
|
|
Option("-H", help="LDB URL for database or target server", type=str)
|
|
]
|
|
|
|
def run(self, dn, H=None, sambaopts=None, credopts=None, versionopts=None):
|
|
|
|
self.url = H
|
|
self.lp = sambaopts.get_loadparm()
|
|
|
|
self.creds = credopts.get_credentials(self.lp, fallback_machine=True)
|
|
|
|
samdb_connect(self)
|
|
|
|
gpo_flags = [
|
|
("GPO_FLAG_USER_DISABLE", dsdb.GPO_FLAG_USER_DISABLE ),
|
|
( "GPO_FLAG_MACHINE_DISABLE", dsdb.GPO_FLAG_MACHINE_DISABLE ) ]
|
|
|
|
try:
|
|
msg = self.samdb.search(base=dn, scope=ldb.SCOPE_BASE,
|
|
expression="(objectClass=groupPolicyContainer)",
|
|
attrs=['nTSecurityDescriptor',
|
|
'versionNumber',
|
|
'flags',
|
|
'name',
|
|
'displayName',
|
|
'gPCFileSysPath'])[0]
|
|
except Exception, e:
|
|
raise CommandError("Could not find GPC with DN %s (%s)" % dn, e)
|
|
|
|
secdesc_ndr = msg['ntSecurityDescriptor'][0]
|
|
secdesc = ndr_unpack(dcerpc.security.descriptor, secdesc_ndr)
|
|
|
|
print("GPO : %s" % msg['name'][0])
|
|
print("display name : %s" % msg['displayName'][0])
|
|
print("path : %s" % msg['gPCFileSysPath'][0])
|
|
print("dn : %s" % msg.dn)
|
|
print("version : %s" % attr_default(msg, 'versionNumber', '0'))
|
|
print("flags : %s" % flags_string(gpo_flags, int(attr_default(msg, 'flags', 0))))
|
|
print("ACL : %s" % secdesc.as_sddl())
|
|
print("")
|
|
|
|
|
|
class cmd_getlink(Command):
|
|
"""List GPO Links for a container"""
|
|
|
|
synopsis = "%prog gpo getlink <container_dn>"
|
|
|
|
takes_optiongroups = {
|
|
"sambaopts": options.SambaOptions,
|
|
"versionopts": options.VersionOptions,
|
|
"credopts": options.CredentialsOptions,
|
|
}
|
|
|
|
takes_args = [ 'container_dn' ]
|
|
|
|
takes_options = [
|
|
Option("-H", help="LDB URL for database or target server", type=str)
|
|
]
|
|
|
|
def run(self, container_dn, H=None, sambaopts=None, credopts=None,
|
|
versionopts=None):
|
|
|
|
self.url = H
|
|
self.lp = sambaopts.get_loadparm()
|
|
|
|
self.creds = credopts.get_credentials(self.lp, fallback_machine=True)
|
|
|
|
samdb_connect(self)
|
|
|
|
gplink_options = [
|
|
("GPLINK_OPT_DISABLE", dsdb.GPLINK_OPT_DISABLE),
|
|
("GPLINK_OPT_ENFORCE", dsdb.GPLINK_OPT_ENFORCE),
|
|
]
|
|
|
|
try:
|
|
msg = self.samdb.search(base=container_dn, scope=ldb.SCOPE_BASE,
|
|
expression="(objectClass=*)",
|
|
attrs=['gPlink'])[0]
|
|
except Exception, e:
|
|
raise CommandError("Could not find Container DN %s (%s)" % container_dn, e)
|
|
|
|
if 'gPLink' in msg:
|
|
print "GPO(s) linked to DN=%s" % container_dn
|
|
gplist = parse_gplink(msg['gPLink'][0])
|
|
for g in gplist:
|
|
print("GPO DN : %s" % g['dn'])
|
|
print("Options : %s" % flags_string(gplink_options, g['options']))
|
|
print("")
|
|
else:
|
|
print "No GPO(s) linked to DN=%s" % container_dn
|
|
|
|
|
|
class cmd_setlink(Command):
|
|
"""Add or Update a GPO link to a container"""
|
|
|
|
synopsis = "%prog gpo setlink <container_dn> <gpo_dn>"
|
|
|
|
takes_optiongroups = {
|
|
"sambaopts": options.SambaOptions,
|
|
"versionopts": options.VersionOptions,
|
|
"credopts": options.CredentialsOptions,
|
|
}
|
|
|
|
takes_args = [ 'container_dn', 'gpo_dn' ]
|
|
|
|
takes_options = [
|
|
Option("-H", help="LDB URL for database or target server", type=str),
|
|
Option("--disable", dest="disabled", default=False, action='store_true',
|
|
help="Disable policy"),
|
|
Option("--enforce", dest="enforced", default=False, action='store_true',
|
|
help="Enforce policy")
|
|
]
|
|
|
|
def run(self, container_dn, gpo_dn, H=None, disabled=False, enforced=False,
|
|
sambaopts=None, credopts=None, versionopts=None):
|
|
|
|
self.url = H
|
|
self.lp = sambaopts.get_loadparm()
|
|
|
|
self.creds = credopts.get_credentials(self.lp, fallback_machine=True)
|
|
|
|
samdb_connect(self)
|
|
|
|
gplink_options = 0
|
|
if disabled:
|
|
gplink_options |= dsdb.GPLINK_OPT_DISABLE
|
|
if enforced:
|
|
gplink_options |= dsdb.GPLINK_OPT_ENFORCE
|
|
|
|
# Check if valid GPO DN
|
|
try:
|
|
msg = self.samdb.search(base=gpo_dn, scope=ldb.SCOPE_BASE,
|
|
expression="(objectClass=groupPolicyContainer)",
|
|
attrs=['dn'])[0]
|
|
except Exception, e:
|
|
raise CommandError("DN (%s) is not a GPO" % gpo_dn)
|
|
|
|
# Check if valid Container DN
|
|
try:
|
|
msg = self.samdb.search(base=container_dn, scope=ldb.SCOPE_BASE,
|
|
expression="(objectClass=*)",
|
|
attrs=['gPlink'])[0]
|
|
except Exception, e:
|
|
raise CommandError("Could not find container DN %s (%s)" % dn, e)
|
|
|
|
# Update existing GPlinks or Add new one
|
|
existing_gplink = False
|
|
if 'gPLink' in msg:
|
|
gplist = parse_gplink(msg['gPLink'][0])
|
|
existing_gplink = True
|
|
found = False
|
|
for g in gplist:
|
|
if g['dn'].lower() == gpo_dn.lower():
|
|
g['options'] = gplink_options
|
|
found = True
|
|
break
|
|
if not found:
|
|
gplist.insert(0, { 'dn' : gpo_dn, 'options' : gplink_options })
|
|
else:
|
|
gplist = []
|
|
gplist.append({ 'dn' : gpo_dn, 'options' : gplink_options })
|
|
|
|
gplink_str = encode_gplink(gplist)
|
|
|
|
m = ldb.Message()
|
|
m.dn = ldb.Dn(self.samdb, container_dn)
|
|
|
|
if existing_gplink:
|
|
m['new_value'] = ldb.MessageElement(gplink_str, ldb.FLAG_MOD_REPLACE, 'gPLink')
|
|
else:
|
|
m['new_value'] = ldb.MessageElement(gplink_str, ldb.FLAG_MOD_ADD, 'gPLink')
|
|
|
|
try:
|
|
self.samdb.modify(m)
|
|
except Exception, e:
|
|
raise CommandError("Error adding GPO Link (%s)" % e)
|
|
|
|
print "Added/Updated GPO link"
|
|
cmd_getlink().run(container_dn, H, sambaopts, credopts, versionopts)
|
|
|
|
|
|
class cmd_dellink(Command):
|
|
"""Delete GPO link from a container"""
|
|
|
|
synopsis = "%prog gpo dellink <container_dn> <gpo_dn>"
|
|
|
|
takes_optiongroups = {
|
|
"sambaopts": options.SambaOptions,
|
|
"versionopts": options.VersionOptions,
|
|
"credopts": options.CredentialsOptions,
|
|
}
|
|
|
|
takes_args = [ 'container_dn', 'gpo_dn' ]
|
|
|
|
takes_options = [
|
|
Option("-H", help="LDB URL for database or target server", type=str),
|
|
]
|
|
|
|
def run(self, container_dn, gpo_dn, H=None, sambaopts=None, credopts=None,
|
|
versionopts=None):
|
|
|
|
self.url = H
|
|
self.lp = sambaopts.get_loadparm()
|
|
|
|
self.creds = credopts.get_credentials(self.lp, fallback_machine=True)
|
|
|
|
samdb_connect(self)
|
|
|
|
# Check if valid GPO DN
|
|
try:
|
|
msg = self.samdb.search(base=gpo_dn, scope=ldb.SCOPE_BASE,
|
|
expression="(objectClass=groupPolicyContainer)",
|
|
attrs=['dn'])[0]
|
|
except Exception, e:
|
|
raise CommandError("DN (%s) is not a GPO" % gpo_dn)
|
|
|
|
# Check if valid Container DN and get existing GPlinks
|
|
try:
|
|
msg = self.samdb.search(base=container_dn, scope=ldb.SCOPE_BASE,
|
|
expression="(objectClass=*)",
|
|
attrs=['gPlink'])[0]
|
|
except Exception, e:
|
|
raise CommandError("Could not find container DN %s (%s)" % dn, e)
|
|
|
|
if 'gPLink' in msg:
|
|
gplist = parse_gplink(msg['gPLink'][0])
|
|
for g in gplist:
|
|
if g['dn'].lower() == gpo_dn.lower():
|
|
gplist.remove(g)
|
|
break
|
|
else:
|
|
raise CommandError("Specified GPO is not linked to this container");
|
|
|
|
|
|
m = ldb.Message()
|
|
m.dn = ldb.Dn(self.samdb, container_dn)
|
|
|
|
if gplist:
|
|
gplink_str = encode_gplink(gplist)
|
|
m['new_value'] = ldb.MessageElement(gplink_str, ldb.FLAG_MOD_REPLACE, 'gPLink')
|
|
else:
|
|
m['new_value'] = ldb.MessageElement('', ldb.FLAG_MOD_DELETE, 'gPLink')
|
|
|
|
try:
|
|
self.samdb.modify(m)
|
|
except Exception, e:
|
|
raise CommandError("Error Removing GPO Link (%s)" % e)
|
|
|
|
print "Deleted GPO link."
|
|
cmd_getlink().run(container_dn, H, sambaopts, credopts, versionopts)
|
|
|
|
|
|
class cmd_getinheritance(Command):
|
|
"""Get inheritance flag for a container"""
|
|
|
|
synopsis = "%prog gpo getinheritance <container_dn>"
|
|
|
|
takes_optiongroups = {
|
|
"sambaopts": options.SambaOptions,
|
|
"versionopts": options.VersionOptions,
|
|
"credopts": options.CredentialsOptions,
|
|
}
|
|
|
|
takes_args = [ 'container_dn' ]
|
|
|
|
takes_options = [
|
|
Option("-H", help="LDB URL for database or target server", type=str)
|
|
]
|
|
|
|
def run(self, container_dn, H=None, sambaopts=None, credopts=None,
|
|
versionopts=None):
|
|
|
|
self.url = H
|
|
self.lp = sambaopts.get_loadparm()
|
|
|
|
self.creds = credopts.get_credentials(self.lp, fallback_machine=True)
|
|
|
|
samdb_connect(self)
|
|
|
|
try:
|
|
msg = self.samdb.search(base=container_dn, scope=ldb.SCOPE_BASE,
|
|
expression="(objectClass=*)",
|
|
attrs=['gPOptions'])[0]
|
|
except Exception, e:
|
|
raise CommandError("Could not find Container DN %s (%s)" % (container_dn, e))
|
|
|
|
inheritance = 0
|
|
if 'gPOptions' in msg:
|
|
inheritance = int(msg['gPOptions'][0]);
|
|
|
|
if inheritance == dsdb.GPO_BLOCK_INHERITANCE:
|
|
print "Container has GPO_BLOCK_INHERITANCE"
|
|
else:
|
|
print "Container has GPO_INHERIT"
|
|
|
|
|
|
class cmd_setinheritance(Command):
|
|
"""Set inheritance flag on a container"""
|
|
|
|
synopsis = "%prog gpo setinheritance <container_dn> <block|inherit>"
|
|
|
|
takes_optiongroups = {
|
|
"sambaopts": options.SambaOptions,
|
|
"versionopts": options.VersionOptions,
|
|
"credopts": options.CredentialsOptions,
|
|
}
|
|
|
|
takes_args = [ 'container_dn', 'inherit_state' ]
|
|
|
|
takes_options = [
|
|
Option("-H", help="LDB URL for database or target server", type=str)
|
|
]
|
|
|
|
def run(self, container_dn, inherit_state, H=None, sambaopts=None, credopts=None,
|
|
versionopts=None):
|
|
|
|
if inherit_state.lower() == 'block':
|
|
inheritance = dsdb.GPO_BLOCK_INHERITANCE
|
|
elif inherit_state.lower() == 'inherit':
|
|
inheritance = dsdb.GPO_INHERIT
|
|
else:
|
|
raise CommandError("Unknown inheritance state (%s)" % inherit_state)
|
|
|
|
self.url = H
|
|
self.lp = sambaopts.get_loadparm()
|
|
|
|
self.creds = credopts.get_credentials(self.lp, fallback_machine=True)
|
|
|
|
samdb_connect(self)
|
|
|
|
try:
|
|
msg = self.samdb.search(base=container_dn, scope=ldb.SCOPE_BASE,
|
|
expression="(objectClass=*)",
|
|
attrs=['gPOptions'])[0]
|
|
except Exception, e:
|
|
raise CommandError("Could not find Container DN %s (%s)" % (container_dn, e))
|
|
|
|
m = ldb.Message()
|
|
m.dn = ldb.Dn(self.samdb, container_dn)
|
|
|
|
if 'gPOptions' in msg:
|
|
m['new_value'] = ldb.MessageElement(str(inheritance), ldb.FLAG_MOD_REPLACE, 'gPOptions')
|
|
else:
|
|
m['new_value'] = ldb.MessageElement(str(inheritance), ldb.FLAG_MOD_ADD, 'gPOptions');
|
|
|
|
try:
|
|
self.samdb.modify(m)
|
|
except Exception, e:
|
|
raise CommandError("Error setting inheritance state %s (%s)" % (inherit_state, e))
|
|
|
|
|
|
class cmd_fetch(Command):
|
|
"""Download a GPO"""
|
|
|
|
class cmd_create(Command):
|
|
"""Create a GPO"""
|
|
|
|
class cmd_setacl(Command):
|
|
"""Set ACL on a GPO"""
|
|
|
|
|
|
class cmd_gpo(SuperCommand):
|
|
"""Group Policy Object (GPO) commands"""
|
|
|
|
subcommands = {}
|
|
subcommands["listall"] = cmd_listall()
|
|
subcommands["list"] = cmd_list()
|
|
subcommands["show"] = cmd_show()
|
|
subcommands["getlink"] = cmd_getlink()
|
|
subcommands["setlink"] = cmd_setlink()
|
|
subcommands["dellink"] = cmd_dellink()
|
|
subcommands["getinheritance"] = cmd_getinheritance()
|
|
subcommands["setinheritance"] = cmd_setinheritance()
|
|
subcommands["fetch"] = cmd_fetch()
|
|
subcommands["create"] = cmd_create()
|
|
subcommands["setacl"] = cmd_setacl()
|