2010-09-27 15:51:28 -05:00
|
|
|
# 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; version 2 only
|
|
|
|
#
|
|
|
|
# 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, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
"""
|
|
|
|
Sudo Rule
|
|
|
|
"""
|
|
|
|
|
|
|
|
from ipalib import api, errors
|
|
|
|
from ipalib import Str, StrEnum
|
|
|
|
from ipalib.plugins.baseldap import *
|
|
|
|
from ipalib import _, ngettext
|
|
|
|
|
|
|
|
class sudorule(LDAPObject):
|
|
|
|
"""
|
|
|
|
Sudo Rule.
|
|
|
|
"""
|
|
|
|
container_dn = api.env.container_sudorule
|
|
|
|
object_name = 'Sudo Rule'
|
|
|
|
object_name_plural = 'Sudo Rules'
|
|
|
|
object_class = ['ipaassociation', 'ipasudorule']
|
|
|
|
default_attributes = [
|
2010-10-04 17:56:40 -05:00
|
|
|
'cn', 'description',
|
2010-09-27 15:51:28 -05:00
|
|
|
|
|
|
|
]
|
|
|
|
uuid_attribute = 'ipauniqueid'
|
|
|
|
attribute_members = {
|
|
|
|
'memberuser': ['user', 'group'],
|
|
|
|
'memberhost': ['host', 'hostgroup'],
|
2010-10-04 17:56:40 -05:00
|
|
|
'memberallowcmd': ['sudocmd', 'sudocmdgroup'],
|
|
|
|
'memberdenycmd': ['sudocmd', 'sudocmdgroup'],
|
2010-09-27 15:51:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
label = _('SudoRule')
|
|
|
|
|
|
|
|
takes_params = (
|
|
|
|
Str('cn',
|
|
|
|
cli_name='name',
|
|
|
|
label=_('Rule name'),
|
|
|
|
primary_key=True,
|
|
|
|
),
|
|
|
|
Str('description?',
|
|
|
|
cli_name='desc',
|
|
|
|
label=_('Description'),
|
|
|
|
),
|
|
|
|
Str('memberuser_user?',
|
|
|
|
label=_('Users'),
|
|
|
|
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'],
|
|
|
|
),
|
2010-10-04 17:56:40 -05:00
|
|
|
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 Command Groups'),
|
2010-09-27 15:51:28 -05:00
|
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
|
|
),
|
2010-10-04 17:56:40 -05:00
|
|
|
Str('memberdenycmd_sudocmdgroup?',
|
2010-09-27 15:51:28 -05:00
|
|
|
label=_('Sudo Command Groups'),
|
|
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
|
|
),
|
2010-10-04 17:56:40 -05:00
|
|
|
|
2010-09-27 15:51:28 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
def get_dn(self, *keys, **kwargs):
|
|
|
|
try:
|
|
|
|
(dn, entry_attrs) = self.backend.find_entry_by_attr(
|
|
|
|
self.primary_key.name, keys[-1], self.object_class, [''],
|
|
|
|
self.container_dn
|
|
|
|
)
|
|
|
|
except errors.NotFound:
|
|
|
|
dn = super(sudorule, self).get_dn(*keys, **kwargs)
|
|
|
|
return dn
|
|
|
|
|
|
|
|
api.register(sudorule)
|
|
|
|
|
|
|
|
|
|
|
|
class sudorule_add(LDAPCreate):
|
|
|
|
"""
|
|
|
|
Create new Sudo Rule.
|
|
|
|
"""
|
|
|
|
|
|
|
|
msg_summary = _('Added sudo rule "%(value)s"')
|
|
|
|
|
|
|
|
api.register(sudorule_add)
|
|
|
|
|
|
|
|
|
|
|
|
class sudorule_del(LDAPDelete):
|
|
|
|
"""
|
|
|
|
Delete Sudo Rule.
|
|
|
|
"""
|
|
|
|
|
|
|
|
api.register(sudorule_del)
|
|
|
|
|
|
|
|
|
|
|
|
class sudorule_mod(LDAPUpdate):
|
|
|
|
"""
|
|
|
|
Modify Sudo Rule.
|
|
|
|
"""
|
|
|
|
|
|
|
|
api.register(sudorule_mod)
|
|
|
|
|
|
|
|
|
|
|
|
class sudorule_find(LDAPSearch):
|
|
|
|
"""
|
|
|
|
Search for Sudo Rule.
|
|
|
|
"""
|
|
|
|
|
|
|
|
api.register(sudorule_find)
|
|
|
|
|
|
|
|
|
|
|
|
class sudorule_show(LDAPRetrieve):
|
|
|
|
"""
|
|
|
|
Dispaly Sudo Rule.
|
|
|
|
"""
|
|
|
|
|
|
|
|
api.register(sudorule_show)
|
|
|
|
|
|
|
|
|
2010-10-04 17:56:40 -05:00
|
|
|
class sudorule_add_allow_command(LDAPAddMember):
|
|
|
|
"""
|
|
|
|
Add commands and sudo command groups affected by Sudo Rule.
|
|
|
|
"""
|
|
|
|
member_attributes = ['memberallowcmd']
|
|
|
|
member_count_out = ('%i object added.', '%i objects added.')
|
|
|
|
|
|
|
|
api.register(sudorule_add_allow_command)
|
|
|
|
|
|
|
|
|
|
|
|
class sudorule_remove_allow_command(LDAPRemoveMember):
|
|
|
|
"""
|
|
|
|
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):
|
2010-09-27 15:51:28 -05:00
|
|
|
"""
|
|
|
|
Add commands and sudo command groups affected by Sudo Rule.
|
|
|
|
"""
|
2010-10-04 17:56:40 -05:00
|
|
|
member_attributes = ['memberdenycmd']
|
2010-09-27 15:51:28 -05:00
|
|
|
member_count_out = ('%i object added.', '%i objects added.')
|
|
|
|
|
2010-10-04 17:56:40 -05:00
|
|
|
api.register(sudorule_add_deny_command)
|
2010-09-27 15:51:28 -05:00
|
|
|
|
|
|
|
|
2010-10-04 17:56:40 -05:00
|
|
|
class sudorule_remove_deny_command(LDAPRemoveMember):
|
2010-09-27 15:51:28 -05:00
|
|
|
"""
|
|
|
|
Remove commands and sudo command groups affected by Sudo Rule.
|
|
|
|
"""
|
2010-10-04 17:56:40 -05:00
|
|
|
member_attributes = ['memberdenycmd']
|
2010-09-27 15:51:28 -05:00
|
|
|
member_count_out = ('%i object removed.', '%i objects removed.')
|
|
|
|
|
2010-10-04 17:56:40 -05:00
|
|
|
api.register(sudorule_remove_deny_command)
|
2010-09-27 15:51:28 -05:00
|
|
|
|
|
|
|
|
|
|
|
class sudorule_add_user(LDAPAddMember):
|
|
|
|
"""
|
|
|
|
Add users and groups affected by Sudo Rule.
|
|
|
|
"""
|
|
|
|
member_attributes = ['memberuser']
|
|
|
|
member_count_out = ('%i object added.', '%i objects added.')
|
|
|
|
|
|
|
|
api.register(sudorule_add_user)
|
|
|
|
|
|
|
|
|
|
|
|
class sudorule_remove_user(LDAPRemoveMember):
|
|
|
|
"""
|
|
|
|
Remove users and groups affected by Sudo Rule.
|
|
|
|
"""
|
|
|
|
member_attributes = ['memberuser']
|
|
|
|
member_count_out = ('%i object removed.', '%i objects removed.')
|
|
|
|
|
|
|
|
api.register(sudorule_remove_user)
|
|
|
|
|
|
|
|
|
|
|
|
class sudorule_add_host(LDAPAddMember):
|
|
|
|
"""
|
|
|
|
Add hosts and hostgroups affected by Sudo Rule.
|
|
|
|
"""
|
|
|
|
member_attributes = ['memberhost']
|
|
|
|
member_count_out = ('%i object added.', '%i objects added.')
|
|
|
|
|
|
|
|
api.register(sudorule_add_host)
|
|
|
|
|
|
|
|
|
|
|
|
class sudorule_remove_host(LDAPRemoveMember):
|
|
|
|
"""
|
|
|
|
Remove hosts and hostgroups affected by Sudo Rule.
|
|
|
|
"""
|
|
|
|
member_attributes = ['memberhost']
|
|
|
|
member_count_out = ('%i object removed.', '%i objects removed.')
|
|
|
|
|
|
|
|
api.register(sudorule_remove_host)
|