mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 18:01:23 -06:00
94d457e83c
* Convert every string specifying a DN into a DN object * Every place a dn was manipulated in some fashion it was replaced by the use of DN operators * Add new DNParam parameter type for parameters which are DN's * DN objects are used 100% of the time throughout the entire data pipeline whenever something is logically a dn. * Many classes now enforce DN usage for their attributes which are dn's. This is implmented via ipautil.dn_attribute_property(). The only permitted types for a class attribute specified to be a DN are either None or a DN object. * Require that every place a dn is used it must be a DN object. This translates into lot of:: assert isinstance(dn, DN) sprinkled through out the code. Maintaining these asserts is valuable to preserve DN type enforcement. The asserts can be disabled in production. The goal of 100% DN usage 100% of the time has been realized, these asserts are meant to preserve that. The asserts also proved valuable in detecting functions which did not obey their function signatures, such as the baseldap pre and post callbacks. * Moved ipalib.dn to ipapython.dn because DN class is shared with all components, not just the server which uses ipalib. * All API's now accept DN's natively, no need to convert to str (or unicode). * Removed ipalib.encoder and encode/decode decorators. Type conversion is now explicitly performed in each IPASimpleLDAPObject method which emulates a ldap.SimpleLDAPObject method. * Entity & Entry classes now utilize DN's * Removed __getattr__ in Entity & Entity clases. There were two problems with it. It presented synthetic Python object attributes based on the current LDAP data it contained. There is no way to validate synthetic attributes using code checkers, you can't search the code to find LDAP attribute accesses (because synthetic attriutes look like Python attributes instead of LDAP data) and error handling is circumscribed. Secondly __getattr__ was hiding Python internal methods which broke class semantics. * Replace use of methods inherited from ldap.SimpleLDAPObject via IPAdmin class with IPAdmin methods. Directly using inherited methods was causing us to bypass IPA logic. Mostly this meant replacing the use of search_s() with getEntry() or getList(). Similarly direct access of the LDAP data in classes using IPAdmin were replaced with calls to getValue() or getValues(). * Objects returned by ldap2.find_entries() are now compatible with either the python-ldap access methodology or the Entity/Entry access methodology. * All ldap operations now funnel through the common IPASimpleLDAPObject giving us a single location where we interface to python-ldap and perform conversions. * The above 4 modifications means we've greatly reduced the proliferation of multiple inconsistent ways to perform LDAP operations. We are well on the way to having a single API in IPA for doing LDAP (a long range goal). * All certificate subject bases are now DN's * DN objects were enhanced thusly: - find, rfind, index, rindex, replace and insert methods were added - AVA, RDN and DN classes were refactored in immutable and mutable variants, the mutable variants are EditableAVA, EditableRDN and EditableDN. By default we use the immutable variants preserving important semantics. To edit a DN cast it to an EditableDN and cast it back to DN when done editing. These issues are fully described in other documentation. - first_key_match was removed - DN equalty comparison permits comparison to a basestring * Fixed ldapupdate to work with DN's. This work included: - Enhance test_updates.py to do more checking after applying update. Add test for update_from_dict(). Convert code to use unittest classes. - Consolidated duplicate code. - Moved code which should have been in the class into the class. - Fix the handling of the 'deleteentry' update action. It's no longer necessary to supply fake attributes to make it work. Detect case where subsequent update applies a change to entry previously marked for deletetion. General clean-up and simplification of the 'deleteentry' logic. - Rewrote a couple of functions to be clearer and more Pythonic. - Added documentation on the data structure being used. - Simplfy the use of update_from_dict() * Removed all usage of get_schema() which was being called prior to accessing the .schema attribute of an object. If a class is using internal lazy loading as an optimization it's not right to require users of the interface to be aware of internal optimization's. schema is now a property and when the schema property is accessed it calls a private internal method to perform the lazy loading. * Added SchemaCache class to cache the schema's from individual servers. This was done because of the observation we talk to different LDAP servers, each of which may have it's own schema. Previously we globally cached the schema from the first server we connected to and returned that schema in all contexts. The cache includes controls to invalidate it thus forcing a schema refresh. * Schema caching is now senstive to the run time context. During install and upgrade the schema can change leading to errors due to out-of-date cached schema. The schema cache is refreshed in these contexts. * We are aware of the LDAP syntax of all LDAP attributes. Every attribute returned from an LDAP operation is passed through a central table look-up based on it's LDAP syntax. The table key is the LDAP syntax it's value is a Python callable that returns a Python object matching the LDAP syntax. There are a handful of LDAP attributes whose syntax is historically incorrect (e.g. DistguishedNames that are defined as DirectoryStrings). The table driven conversion mechanism is augmented with a table of hard coded exceptions. Currently only the following conversions occur via the table: - dn's are converted to DN objects - binary objects are converted to Python str objects (IPA convention). - everything else is converted to unicode using UTF-8 decoding (IPA convention). However, now that the table driven conversion mechanism is in place it would be trivial to do things such as converting attributes which have LDAP integer syntax into a Python integer, etc. * Expected values in the unit tests which are a DN no longer need to use lambda expressions to promote the returned value to a DN for equality comparison. The return value is automatically promoted to a DN. The lambda expressions have been removed making the code much simpler and easier to read. * Add class level logging to a number of classes which did not support logging, less need for use of root_logger. * Remove ipaserver/conn.py, it was unused. * Consolidated duplicate code wherever it was found. * Fixed many places that used string concatenation to form a new string rather than string formatting operators. This is necessary because string formatting converts it's arguments to a string prior to building the result string. You can't concatenate a string and a non-string. * Simplify logic in rename_managed plugin. Use DN operators to edit dn's. * The live version of ipa-ldap-updater did not generate a log file. The offline version did, now both do. https://fedorahosted.org/freeipa/ticket/1670 https://fedorahosted.org/freeipa/ticket/1671 https://fedorahosted.org/freeipa/ticket/1672 https://fedorahosted.org/freeipa/ticket/1673 https://fedorahosted.org/freeipa/ticket/1674 https://fedorahosted.org/freeipa/ticket/1392 https://fedorahosted.org/freeipa/ticket/2872
708 lines
26 KiB
Python
708 lines
26 KiB
Python
# Authors:
|
|
# Jr Aquino <jr.aquino@citrixonline.com>
|
|
#
|
|
# Copyright (C) 2010 Red Hat
|
|
# see file 'COPYING' for use and warranty information
|
|
#
|
|
# 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/>.
|
|
|
|
from ipalib import api, errors
|
|
from ipalib import Str, StrEnum, Bool
|
|
from ipalib.plugins.baseldap import *
|
|
from ipalib.plugins.hbacrule import is_all
|
|
from ipalib import _, ngettext
|
|
|
|
__doc__ = _("""
|
|
Sudo Rules
|
|
|
|
Sudo (su "do") allows a system administrator to delegate authority to
|
|
give certain users (or groups of users) the ability to run some (or all)
|
|
commands as root or another user while providing an audit trail of the
|
|
commands and their arguments.
|
|
|
|
FreeIPA provides a means to configure the various aspects of Sudo:
|
|
Users: The user(s)/group(s) allowed to envoke Sudo.
|
|
Hosts: The host(s)/hostgroup(s) which the user is allowed to to invoke Sudo.
|
|
Allow Command: The specific command(s) permited to be run via Sudo.
|
|
Deny Command: The specific command(s) prohibited to be run via Sudo.
|
|
RunAsUser: The user(s) or group(s) of users whose rights Sudo will be invoked with.
|
|
RunAsGroup: The group(s) whose gid rights Sudo will be invoked with.
|
|
Options: The various Sudoers Options that can modify Sudo's behavior.
|
|
|
|
An order can be added to a sudorule to control the order in which they
|
|
are evaluated (if the client supports it). This order is an integer and
|
|
must be unique.
|
|
|
|
FreeIPA provides a designated binddn to use with Sudo located at:
|
|
uid=sudo,cn=sysaccounts,cn=etc,dc=example,dc=com
|
|
|
|
To enable the binddn run the following command to set the password:
|
|
LDAPTLS_CACERT=/etc/ipa/ca.crt /usr/bin/ldappasswd -S -W \
|
|
-h ipa.example.com -ZZ -D "cn=Directory Manager" \
|
|
uid=sudo,cn=sysaccounts,cn=etc,dc=example,dc=com
|
|
|
|
For more information, see the FreeIPA Documentation to Sudo.
|
|
""")
|
|
|
|
topic = ('sudo', _('Commands for controlling sudo configuration'))
|
|
|
|
def deprecated(attribute):
|
|
raise errors.ValidationError(name=attribute, error=_('this option has been deprecated.'))
|
|
|
|
def validate_externaluser(ugettext, value):
|
|
deprecated('externaluser')
|
|
|
|
def validate_runasextuser(ugettext, value):
|
|
deprecated('runasexternaluser')
|
|
|
|
def validate_runasextgroup(ugettext, value):
|
|
deprecated('runasexternalgroup')
|
|
|
|
class sudorule(LDAPObject):
|
|
"""
|
|
Sudo Rule object.
|
|
"""
|
|
container_dn = api.env.container_sudorule
|
|
object_name = _('sudo rule')
|
|
object_name_plural = _('sudo rules')
|
|
object_class = ['ipaassociation', 'ipasudorule']
|
|
default_attributes = [
|
|
'cn', 'ipaenabledflag', 'externaluser',
|
|
'description', 'usercategory', 'hostcategory',
|
|
'cmdcategory', 'memberuser', 'memberhost',
|
|
'memberallowcmd', 'memberdenycmd', 'ipasudoopt',
|
|
'ipasudorunas', 'ipasudorunasgroup',
|
|
'ipasudorunasusercategory', 'ipasudorunasgroupcategory',
|
|
'sudoorder',
|
|
]
|
|
uuid_attribute = 'ipauniqueid'
|
|
rdn_attribute = 'ipauniqueid'
|
|
attribute_members = {
|
|
'memberuser': ['user', 'group'],
|
|
'memberhost': ['host', 'hostgroup'],
|
|
'memberallowcmd': ['sudocmd', 'sudocmdgroup'],
|
|
'memberdenycmd': ['sudocmd', 'sudocmdgroup'],
|
|
'ipasudorunas': ['user', 'group'],
|
|
'ipasudorunasgroup': ['group'],
|
|
}
|
|
|
|
label = _('Sudo Rules')
|
|
label_singular = _('Sudo Rule')
|
|
|
|
takes_params = (
|
|
Str('cn',
|
|
cli_name='sudorule_name',
|
|
label=_('Rule name'),
|
|
primary_key=True,
|
|
),
|
|
Str('description?',
|
|
cli_name='desc',
|
|
label=_('Description'),
|
|
),
|
|
Bool('ipaenabledflag?',
|
|
label=_('Enabled'),
|
|
flags=['no_option'],
|
|
),
|
|
StrEnum('usercategory?',
|
|
cli_name='usercat',
|
|
label=_('User category'),
|
|
doc=_('User category the rule applies to'),
|
|
values=(u'all', ),
|
|
),
|
|
StrEnum('hostcategory?',
|
|
cli_name='hostcat',
|
|
label=_('Host category'),
|
|
doc=_('Host category the rule applies to'),
|
|
values=(u'all', ),
|
|
),
|
|
StrEnum('cmdcategory?',
|
|
cli_name='cmdcat',
|
|
label=_('Command category'),
|
|
doc=_('Command category the rule applies to'),
|
|
values=(u'all', ),
|
|
),
|
|
StrEnum('ipasudorunasusercategory?',
|
|
cli_name='runasusercat',
|
|
label=_('RunAs User category'),
|
|
doc=_('RunAs User category the rule applies to'),
|
|
values=(u'all', ),
|
|
),
|
|
StrEnum('ipasudorunasgroupcategory?',
|
|
cli_name='runasgroupcat',
|
|
label=_('RunAs Group category'),
|
|
doc=_('RunAs Group category the rule applies to'),
|
|
values=(u'all', ),
|
|
),
|
|
Int('sudoorder?',
|
|
cli_name='order',
|
|
label=_('Sudo order'),
|
|
doc=_('integer to order the Sudo rules'),
|
|
default=0,
|
|
minvalue=0,
|
|
),
|
|
Str('memberuser_user?',
|
|
label=_('Users'),
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
),
|
|
Str('memberuser_group?',
|
|
label=_('User Groups'),
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
),
|
|
Str('memberhost_host?',
|
|
label=_('Hosts'),
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
),
|
|
Str('memberhost_hostgroup?',
|
|
label=_('Host Groups'),
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
),
|
|
Str('memberallowcmd_sudocmd?',
|
|
label=_('Sudo Allow Commands'),
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
),
|
|
Str('memberdenycmd_sudocmd?',
|
|
label=_('Sudo Deny Commands'),
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
),
|
|
Str('memberallowcmd_sudocmdgroup?',
|
|
label=_('Sudo Allow Command Groups'),
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
),
|
|
Str('memberdenycmd_sudocmdgroup?',
|
|
label=_('Sudo Deny Command Groups'),
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
),
|
|
Str('ipasudorunas_user?',
|
|
label=_('RunAs Users'),
|
|
doc=_('Run as a user'),
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
),
|
|
Str('ipasudorunas_group?',
|
|
label=_('Groups of RunAs Users'),
|
|
doc=_('Run as any user within a specified group'),
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
),
|
|
Str('externaluser?', validate_externaluser,
|
|
cli_name='externaluser',
|
|
label=_('External User'),
|
|
doc=_('External User the rule applies to (sudorule-find only)'),
|
|
),
|
|
Str('ipasudorunasextuser?', validate_runasextuser,
|
|
cli_name='runasexternaluser',
|
|
label=_('RunAs External User'),
|
|
doc=_('External User the commands can run as (sudorule-find only)'),
|
|
),
|
|
Str('ipasudorunasextgroup?', validate_runasextgroup,
|
|
cli_name='runasexternalgroup',
|
|
label=_('RunAs External Group'),
|
|
doc=_('External Group the commands can run as (sudorule-find only)'),
|
|
),
|
|
Str('ipasudoopt?',
|
|
label=_('Sudo Option'),
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
),
|
|
Str('ipasudorunasgroup_group?',
|
|
label=_('RunAs Groups'),
|
|
doc=_('Run with the gid of a specified POSIX group'),
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
),
|
|
external_host_param,
|
|
)
|
|
|
|
order_not_unique_msg = _(
|
|
'order must be a unique value (%(order)d already used by %(rule)s)'
|
|
)
|
|
|
|
def check_order_uniqueness(self, *keys, **options):
|
|
if 'sudoorder' in options:
|
|
entries = self.methods.find(
|
|
sudoorder=options['sudoorder']
|
|
)['result']
|
|
if len(entries) > 0:
|
|
rule_name = entries[0]['cn'][0]
|
|
raise errors.ValidationError(
|
|
name='order',
|
|
error=self.order_not_unique_msg % {
|
|
'order': options['sudoorder'],
|
|
'rule': rule_name,
|
|
}
|
|
)
|
|
|
|
api.register(sudorule)
|
|
|
|
|
|
class sudorule_add(LDAPCreate):
|
|
__doc__ = _('Create new Sudo Rule.')
|
|
|
|
def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
self.obj.check_order_uniqueness(*keys, **options)
|
|
# Sudo Rules are enabled by default
|
|
entry_attrs['ipaenabledflag'] = 'TRUE'
|
|
return dn
|
|
|
|
msg_summary = _('Added Sudo Rule "%(value)s"')
|
|
|
|
api.register(sudorule_add)
|
|
|
|
|
|
class sudorule_del(LDAPDelete):
|
|
__doc__ = _('Delete Sudo Rule.')
|
|
|
|
msg_summary = _('Deleted Sudo Rule "%(value)s"')
|
|
|
|
api.register(sudorule_del)
|
|
|
|
|
|
class sudorule_mod(LDAPUpdate):
|
|
__doc__ = _('Modify Sudo Rule.')
|
|
|
|
msg_summary = _('Modified Sudo Rule "%(value)s"')
|
|
def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
if 'sudoorder' in options:
|
|
new_order = options.get('sudoorder')
|
|
old_entry = self.api.Command.sudorule_show(keys[-1])['result']
|
|
if 'sudoorder' in old_entry:
|
|
old_order = int(old_entry['sudoorder'][0])
|
|
if old_order != new_order:
|
|
self.obj.check_order_uniqueness(*keys, **options)
|
|
else:
|
|
self.obj.check_order_uniqueness(*keys, **options)
|
|
try:
|
|
(_dn, _entry_attrs) = ldap.get_entry(dn, self.obj.default_attributes)
|
|
except errors.NotFound:
|
|
self.obj.handle_not_found(*keys)
|
|
|
|
if is_all(options, 'usercategory') and 'memberuser' in _entry_attrs:
|
|
raise errors.MutuallyExclusiveError(reason=_("user category cannot be set to 'all' while there are users"))
|
|
if is_all(options, 'hostcategory') and 'memberhost' in _entry_attrs:
|
|
raise errors.MutuallyExclusiveError(reason=_("host category cannot be set to 'all' while there are hosts"))
|
|
if is_all(options, 'cmdcategory') and ('memberallowcmd' or
|
|
'memberdenywcmd') in _entry_attrs:
|
|
raise errors.MutuallyExclusiveError(reason=_("command category cannot be set to 'all' while there are allow or deny commands"))
|
|
if is_all(options, 'ipasudorunasusercategory') and 'ipasudorunas' in _entry_attrs:
|
|
raise errors.MutuallyExclusiveError(reason=_("user runAs category cannot be set to 'all' while there are users"))
|
|
if is_all(options, 'ipasudorunasgroupcategory') and 'ipasudorunasgroup' in _entry_attrs:
|
|
raise errors.MutuallyExclusiveError(reason=_("group runAs category cannot be set to 'all' while there are groups"))
|
|
|
|
return dn
|
|
|
|
api.register(sudorule_mod)
|
|
|
|
|
|
class sudorule_find(LDAPSearch):
|
|
__doc__ = _('Search for Sudo Rule.')
|
|
|
|
msg_summary = ngettext(
|
|
'%(count)d Sudo Rule matched', '%(count)d Sudo Rules matched', 0
|
|
)
|
|
|
|
api.register(sudorule_find)
|
|
|
|
|
|
class sudorule_show(LDAPRetrieve):
|
|
__doc__ = _('Display Sudo Rule.')
|
|
|
|
api.register(sudorule_show)
|
|
|
|
|
|
class sudorule_enable(LDAPQuery):
|
|
__doc__ = _('Enable a Sudo Rule.')
|
|
|
|
def execute(self, cn):
|
|
ldap = self.obj.backend
|
|
|
|
dn = self.obj.get_dn(cn)
|
|
entry_attrs = {'ipaenabledflag': 'TRUE'}
|
|
|
|
try:
|
|
ldap.update_entry(dn, entry_attrs)
|
|
except errors.EmptyModlist:
|
|
pass
|
|
except errors.NotFound:
|
|
self.obj.handle_not_found(cn)
|
|
|
|
return dict(result=True)
|
|
|
|
def output_for_cli(self, textui, result, cn):
|
|
textui.print_dashed(_('Enabled Sudo Rule "%s"') % cn)
|
|
|
|
api.register(sudorule_enable)
|
|
|
|
|
|
class sudorule_disable(LDAPQuery):
|
|
__doc__ = _('Disable a Sudo Rule.')
|
|
|
|
def execute(self, cn):
|
|
ldap = self.obj.backend
|
|
|
|
dn = self.obj.get_dn(cn)
|
|
entry_attrs = {'ipaenabledflag': 'FALSE'}
|
|
|
|
try:
|
|
ldap.update_entry(dn, entry_attrs)
|
|
except errors.EmptyModlist:
|
|
pass
|
|
except errors.NotFound:
|
|
self.obj.handle_not_found(cn)
|
|
|
|
return dict(result=True)
|
|
|
|
def output_for_cli(self, textui, result, cn):
|
|
textui.print_dashed(_('Disabled Sudo Rule "%s"') % cn)
|
|
|
|
api.register(sudorule_disable)
|
|
|
|
|
|
class sudorule_add_allow_command(LDAPAddMember):
|
|
__doc__ = _('Add commands and sudo command groups affected by Sudo Rule.')
|
|
|
|
member_attributes = ['memberallowcmd']
|
|
member_count_out = ('%i object added.', '%i objects added.')
|
|
|
|
def pre_callback(self, ldap, dn, found, not_found, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
try:
|
|
(_dn, _entry_attrs) = ldap.get_entry(dn, self.obj.default_attributes)
|
|
except errors.NotFound:
|
|
self.obj.handle_not_found(*keys)
|
|
if is_all(_entry_attrs, 'cmdcategory'):
|
|
raise errors.MutuallyExclusiveError(reason=_("commands cannot be added when command category='all'"))
|
|
|
|
return dn
|
|
|
|
api.register(sudorule_add_allow_command)
|
|
|
|
|
|
class sudorule_remove_allow_command(LDAPRemoveMember):
|
|
__doc__ = _('Remove commands and sudo command groups affected by Sudo Rule.')
|
|
|
|
member_attributes = ['memberallowcmd']
|
|
member_count_out = ('%i object removed.', '%i objects removed.')
|
|
|
|
api.register(sudorule_remove_allow_command)
|
|
|
|
|
|
class sudorule_add_deny_command(LDAPAddMember):
|
|
__doc__ = _('Add commands and sudo command groups affected by Sudo Rule.')
|
|
|
|
member_attributes = ['memberdenycmd']
|
|
member_count_out = ('%i object added.', '%i objects added.')
|
|
|
|
def pre_callback(self, ldap, dn, found, not_found, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
try:
|
|
(_dn, _entry_attrs) = ldap.get_entry(dn, self.obj.default_attributes)
|
|
except errors.NotFound:
|
|
self.obj.handle_not_found(*keys)
|
|
if is_all(_entry_attrs, 'cmdcategory'):
|
|
raise errors.MutuallyExclusiveError(reason=_("commands cannot be added when command category='all'"))
|
|
return dn
|
|
|
|
api.register(sudorule_add_deny_command)
|
|
|
|
|
|
class sudorule_remove_deny_command(LDAPRemoveMember):
|
|
__doc__ = _('Remove commands and sudo command groups affected by Sudo Rule.')
|
|
|
|
member_attributes = ['memberdenycmd']
|
|
member_count_out = ('%i object removed.', '%i objects removed.')
|
|
|
|
api.register(sudorule_remove_deny_command)
|
|
|
|
|
|
class sudorule_add_user(LDAPAddMember):
|
|
__doc__ = _('Add users and groups affected by Sudo Rule.')
|
|
|
|
member_attributes = ['memberuser']
|
|
member_count_out = ('%i object added.', '%i objects added.')
|
|
|
|
def pre_callback(self, ldap, dn, found, not_found, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
try:
|
|
(_dn, _entry_attrs) = ldap.get_entry(dn, self.obj.default_attributes)
|
|
except errors.NotFound:
|
|
self.obj.handle_not_found(*keys)
|
|
if is_all(_entry_attrs, 'usercategory'):
|
|
raise errors.MutuallyExclusiveError(reason=_("users cannot be added when user category='all'"))
|
|
return add_external_pre_callback('user', ldap, dn, keys, options)
|
|
|
|
def post_callback(self, ldap, completed, failed, dn, entry_attrs, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
return add_external_post_callback('memberuser', 'user', 'externaluser', ldap, completed, failed, dn, entry_attrs, keys, options)
|
|
|
|
api.register(sudorule_add_user)
|
|
|
|
|
|
class sudorule_remove_user(LDAPRemoveMember):
|
|
__doc__ = _('Remove users and groups affected by Sudo Rule.')
|
|
|
|
member_attributes = ['memberuser']
|
|
member_count_out = ('%i object removed.', '%i objects removed.')
|
|
|
|
def post_callback(self, ldap, completed, failed, dn, entry_attrs, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
return remove_external_post_callback('memberuser', 'user', 'externaluser', ldap, completed, failed, dn, entry_attrs, keys, options)
|
|
|
|
api.register(sudorule_remove_user)
|
|
|
|
|
|
class sudorule_add_host(LDAPAddMember):
|
|
__doc__ = _('Add hosts and hostgroups affected by Sudo Rule.')
|
|
|
|
member_attributes = ['memberhost']
|
|
member_count_out = ('%i object added.', '%i objects added.')
|
|
|
|
def pre_callback(self, ldap, dn, found, not_found, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
try:
|
|
(_dn, _entry_attrs) = ldap.get_entry(dn, self.obj.default_attributes)
|
|
except errors.NotFound:
|
|
self.obj.handle_not_found(*keys)
|
|
if is_all(_entry_attrs, 'hostcategory'):
|
|
raise errors.MutuallyExclusiveError(reason=_("hosts cannot be added when host category='all'"))
|
|
return add_external_pre_callback('host', ldap, dn, keys, options)
|
|
|
|
def post_callback(self, ldap, completed, failed, dn, entry_attrs, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
return add_external_post_callback('memberhost', 'host', 'externalhost', ldap, completed, failed, dn, entry_attrs, keys, options)
|
|
|
|
api.register(sudorule_add_host)
|
|
|
|
|
|
class sudorule_remove_host(LDAPRemoveMember):
|
|
__doc__ = _('Remove hosts and hostgroups affected by Sudo Rule.')
|
|
|
|
member_attributes = ['memberhost']
|
|
member_count_out = ('%i object removed.', '%i objects removed.')
|
|
|
|
def post_callback(self, ldap, completed, failed, dn, entry_attrs, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
return remove_external_post_callback('memberhost', 'host', 'externalhost', ldap, completed, failed, dn, entry_attrs, keys, options)
|
|
|
|
api.register(sudorule_remove_host)
|
|
|
|
class sudorule_add_runasuser(LDAPAddMember):
|
|
__doc__ = _('Add users and groups for Sudo to execute as.')
|
|
|
|
member_attributes = ['ipasudorunas']
|
|
member_count_out = ('%i object added.', '%i objects added.')
|
|
|
|
def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
def check_validity(runas):
|
|
v = unicode(runas)
|
|
if v.upper() == u'ALL':
|
|
return False
|
|
return True
|
|
|
|
try:
|
|
(_dn, _entry_attrs) = ldap.get_entry(dn, self.obj.default_attributes)
|
|
except errors.NotFound:
|
|
self.obj.handle_not_found(*keys)
|
|
if is_all(_entry_attrs, 'ipasudorunasusercategory') or \
|
|
is_all(_entry_attrs, 'ipasudorunasgroupcategory'):
|
|
raise errors.MutuallyExclusiveError(reason=_("users cannot be added when runAs user or runAs group category='all'"))
|
|
|
|
if 'user' in options:
|
|
for name in options['user']:
|
|
if not check_validity(name):
|
|
raise errors.ValidationError(name='runas-user',
|
|
error=unicode(_("RunAsUser does not accept '%(name)s' as a user name")) %
|
|
dict(name=name))
|
|
if 'group' in options:
|
|
for name in options['group']:
|
|
if not check_validity(name):
|
|
raise errors.ValidationError(name='runas-user',
|
|
error=unicode(_("RunAsUser does not accept '%(name)s' as a group name")) %
|
|
dict(name=name))
|
|
|
|
return add_external_pre_callback('user', ldap, dn, keys, options)
|
|
|
|
def post_callback(self, ldap, completed, failed, dn, entry_attrs, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
return add_external_post_callback('ipasudorunas', 'user', 'ipasudorunasextuser', ldap, completed, failed, dn, entry_attrs, keys, options)
|
|
|
|
api.register(sudorule_add_runasuser)
|
|
|
|
|
|
class sudorule_remove_runasuser(LDAPRemoveMember):
|
|
__doc__ = _('Remove users and groups for Sudo to execute as.')
|
|
|
|
member_attributes = ['ipasudorunas']
|
|
member_count_out = ('%i object removed.', '%i objects removed.')
|
|
|
|
def post_callback(self, ldap, completed, failed, dn, entry_attrs, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
return remove_external_post_callback('ipasudorunas', 'user', 'ipasudorunasextuser', ldap, completed, failed, dn, entry_attrs, keys, options)
|
|
|
|
api.register(sudorule_remove_runasuser)
|
|
|
|
|
|
class sudorule_add_runasgroup(LDAPAddMember):
|
|
__doc__ = _('Add group for Sudo to execute as.')
|
|
|
|
member_attributes = ['ipasudorunasgroup']
|
|
member_count_out = ('%i object added.', '%i objects added.')
|
|
|
|
def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
def check_validity(runas):
|
|
v = unicode(runas)
|
|
if v.upper() == u'ALL':
|
|
return False
|
|
return True
|
|
|
|
try:
|
|
(_dn, _entry_attrs) = ldap.get_entry(dn, self.obj.default_attributes)
|
|
except errors.NotFound:
|
|
self.obj.handle_not_found(*keys)
|
|
if is_all(_entry_attrs, 'ipasudorunasusercategory') or \
|
|
is_all(_entry_attrs, 'ipasudorunasgroupcategory'):
|
|
raise errors.MutuallyExclusiveError(reason=_("users cannot be added when runAs user or runAs group category='all'"))
|
|
|
|
if 'group' in options:
|
|
for name in options['group']:
|
|
if not check_validity(name):
|
|
raise errors.ValidationError(name='runas-group',
|
|
error=unicode(_("RunAsGroup does not accept '%(name)s' as a group name")) %
|
|
dict(name=name))
|
|
|
|
return add_external_pre_callback('group', ldap, dn, keys, options)
|
|
|
|
def post_callback(self, ldap, completed, failed, dn, entry_attrs, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
return add_external_post_callback('ipasudorunasgroup', 'group', 'ipasudorunasextgroup', ldap, completed, failed, dn, entry_attrs, keys, options)
|
|
|
|
api.register(sudorule_add_runasgroup)
|
|
|
|
|
|
class sudorule_remove_runasgroup(LDAPRemoveMember):
|
|
__doc__ = _('Remove group for Sudo to execute as.')
|
|
|
|
member_attributes = ['ipasudorunasgroup']
|
|
member_count_out = ('%i object removed.', '%i objects removed.')
|
|
|
|
def post_callback(self, ldap, completed, failed, dn, entry_attrs, *keys, **options):
|
|
assert isinstance(dn, DN)
|
|
return remove_external_post_callback('ipasudorunasgroup', 'group', 'ipasudorunasextgroup', ldap, completed, failed, dn, entry_attrs, keys, options)
|
|
|
|
api.register(sudorule_remove_runasgroup)
|
|
|
|
|
|
class sudorule_add_option(LDAPQuery):
|
|
__doc__ = _('Add an option to the Sudo Rule.')
|
|
|
|
takes_options = (
|
|
Str('ipasudoopt',
|
|
cli_name='sudooption',
|
|
label=_('Sudo Option'),
|
|
),
|
|
)
|
|
|
|
def execute(self, cn, **options):
|
|
ldap = self.obj.backend
|
|
|
|
dn = self.obj.get_dn(cn)
|
|
|
|
if not options['ipasudoopt'].strip():
|
|
raise errors.EmptyModlist()
|
|
(dn, entry_attrs) = ldap.get_entry(dn, ['ipasudoopt'])
|
|
|
|
try:
|
|
if options['ipasudoopt'] not in entry_attrs['ipasudoopt']:
|
|
entry_attrs.setdefault('ipasudoopt', []).append(
|
|
options['ipasudoopt'])
|
|
else:
|
|
raise errors.DuplicateEntry
|
|
except KeyError:
|
|
entry_attrs.setdefault('ipasudoopt', []).append(
|
|
options['ipasudoopt'])
|
|
try:
|
|
ldap.update_entry(dn, entry_attrs)
|
|
except errors.EmptyModlist:
|
|
pass
|
|
except errors.NotFound:
|
|
self.obj.handle_not_found(cn)
|
|
|
|
attrs_list = self.obj.default_attributes
|
|
(dn, entry_attrs) = ldap.get_entry(
|
|
dn, attrs_list, normalize=self.obj.normalize_dn
|
|
)
|
|
|
|
return dict(result=entry_attrs)
|
|
|
|
def output_for_cli(self, textui, result, cn, **options):
|
|
textui.print_dashed(_('Added option "%(option)s" to Sudo Rule "%(rule)s"') % \
|
|
dict(option=options['ipasudoopt'], rule=cn))
|
|
super(sudorule_add_option, self).output_for_cli(textui, result, cn, options)
|
|
|
|
|
|
|
|
api.register(sudorule_add_option)
|
|
|
|
|
|
class sudorule_remove_option(LDAPQuery):
|
|
__doc__ = _('Remove an option from Sudo Rule.')
|
|
|
|
takes_options = (
|
|
Str('ipasudoopt',
|
|
cli_name='sudooption',
|
|
label=_('Sudo Option'),
|
|
),
|
|
)
|
|
|
|
def execute(self, cn, **options):
|
|
ldap = self.obj.backend
|
|
|
|
dn = self.obj.get_dn(cn)
|
|
|
|
if not options['ipasudoopt'].strip():
|
|
raise errors.EmptyModlist()
|
|
(dn, entry_attrs) = ldap.get_entry(dn, ['ipasudoopt'])
|
|
try:
|
|
if options['ipasudoopt'] in entry_attrs['ipasudoopt']:
|
|
entry_attrs.setdefault('ipasudoopt', []).remove(
|
|
options['ipasudoopt'])
|
|
ldap.update_entry(dn, entry_attrs)
|
|
else:
|
|
raise errors.AttrValueNotFound(
|
|
attr='ipasudoopt',
|
|
value=options['ipasudoopt']
|
|
)
|
|
except ValueError, e:
|
|
pass
|
|
except KeyError:
|
|
raise errors.AttrValueNotFound(
|
|
attr='ipasudoopt',
|
|
value=options['ipasudoopt']
|
|
)
|
|
except errors.NotFound:
|
|
self.obj.handle_not_found(cn)
|
|
|
|
attrs_list = self.obj.default_attributes
|
|
(dn, entry_attrs) = ldap.get_entry(
|
|
dn, attrs_list, normalize=self.obj.normalize_dn
|
|
)
|
|
|
|
return dict(result=entry_attrs)
|
|
|
|
def output_for_cli(self, textui, result, cn, **options):
|
|
textui.print_dashed(_('Removed option "%(option)s" from Sudo Rule "%(rule)s"') % \
|
|
dict(option=options['ipasudoopt'], rule=cn))
|
|
super(sudorule_remove_option, self).output_for_cli(textui, result, cn, options)
|
|
|
|
api.register(sudorule_remove_option)
|