2009-05-13 07:21:30 -05:00
|
|
|
# Authors:
|
|
|
|
# Rob Crittenden <rcritten@redhat.com>
|
|
|
|
# Pavel Zuna <pzuna@redhat.com>
|
|
|
|
#
|
|
|
|
# Copyright (C) 2008 Red Hat
|
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
2010-12-09 06:59:11 -06:00
|
|
|
# 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.
|
2009-05-13 07:21:30 -05:00
|
|
|
#
|
|
|
|
# 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
|
2010-12-09 06:59:11 -06:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2011-08-24 21:48:30 -05:00
|
|
|
|
|
|
|
from ipalib import api
|
|
|
|
from ipalib import Bool, Int, Str, IA5Str
|
|
|
|
from ipalib.plugins.baseldap import *
|
|
|
|
from ipalib import _
|
|
|
|
from ipalib.errors import ValidationError
|
|
|
|
|
2011-10-11 03:26:21 -05:00
|
|
|
# 389-ds attributes that should be skipped in attribute checks
|
|
|
|
OPERATIONAL_ATTRIBUTES = ('nsaccountlock', 'member', 'memberof',
|
|
|
|
'memberindirect', 'memberofindirect',)
|
|
|
|
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _("""
|
2011-11-10 05:06:49 -06:00
|
|
|
Server configuration
|
2010-06-02 13:08:50 -05:00
|
|
|
|
2011-03-04 10:08:54 -06:00
|
|
|
Manage the default values that IPA uses and some of its tuning parameters.
|
2010-06-02 13:08:50 -05:00
|
|
|
|
2011-11-10 05:06:49 -06:00
|
|
|
NOTES:
|
2010-06-02 13:08:50 -05:00
|
|
|
|
2011-11-10 05:06:49 -06:00
|
|
|
The password notification value (--pwdexpnotify) is stored here so it will
|
|
|
|
be replicated. It is not currently used to notify users in advance of an
|
|
|
|
expiring password.
|
2010-06-02 13:08:50 -05:00
|
|
|
|
2011-11-10 05:06:49 -06:00
|
|
|
Some attributes are read-only, provided only for information purposes. These
|
|
|
|
include:
|
2010-06-02 13:08:50 -05:00
|
|
|
|
2011-11-10 05:06:49 -06:00
|
|
|
Certificate Subject base: the configured certificate subject base,
|
|
|
|
e.g. O=EXAMPLE.COM. This is configurable only at install time.
|
|
|
|
Password plug-in features: currently defines additional hashes that the
|
|
|
|
password will generate (there may be other conditions).
|
2010-06-02 13:08:50 -05:00
|
|
|
|
2011-11-23 15:59:21 -06:00
|
|
|
When setting the order list for mapping SELinux users you may need to
|
|
|
|
quote the value so it isn't interpreted by the shell.
|
|
|
|
|
2011-11-10 05:06:49 -06:00
|
|
|
EXAMPLES:
|
2010-06-02 13:08:50 -05:00
|
|
|
|
2011-11-10 05:06:49 -06:00
|
|
|
Show basic server configuration:
|
|
|
|
ipa config-show
|
2010-06-02 13:08:50 -05:00
|
|
|
|
2011-11-10 05:06:49 -06:00
|
|
|
Show all configuration options:
|
|
|
|
ipa config-show --all
|
2010-06-02 13:08:50 -05:00
|
|
|
|
2011-11-10 05:06:49 -06:00
|
|
|
Change maximum username length to 99 characters:
|
|
|
|
ipa config-mod --maxusername=99
|
2010-06-02 13:08:50 -05:00
|
|
|
|
2011-11-10 05:06:49 -06:00
|
|
|
Increase default time and size limits for maximum IPA server search:
|
|
|
|
ipa config-mod --searchtimelimit=10 --searchrecordslimit=2000
|
2010-12-01 16:48:41 -06:00
|
|
|
|
2011-11-10 05:06:49 -06:00
|
|
|
Set default user e-mail domain:
|
|
|
|
ipa config-mod --emaildomain=example.com
|
2010-12-01 16:48:41 -06:00
|
|
|
|
2011-11-10 05:06:49 -06:00
|
|
|
Enable migration mode to make "ipa migrate-ds" command operational:
|
|
|
|
ipa config-mod --enable-migration=TRUE
|
2011-11-23 15:59:21 -06:00
|
|
|
|
|
|
|
Define SELinux user map order:
|
|
|
|
ipa config-mod --ipaselinuxusermaporder='guest_u:s0$xguest_u:s0$user_u:s0-s0:c0.c1023$staff_u:s0-s0:c0.c1023$unconfined_u:s0-s0:c0.c1023'
|
2011-08-24 21:48:30 -05:00
|
|
|
""")
|
2009-05-13 07:21:30 -05:00
|
|
|
|
2011-01-13 12:08:52 -06:00
|
|
|
def validate_searchtimelimit(ugettext, limit):
|
|
|
|
if limit == 0:
|
|
|
|
raise ValidationError(name='ipasearchtimelimit', error=_('searchtimelimit must be -1 or > 1.'))
|
|
|
|
return None
|
|
|
|
|
2009-08-27 08:49:58 -05:00
|
|
|
class config(LDAPObject):
|
2009-05-13 07:21:30 -05:00
|
|
|
"""
|
2009-08-27 08:49:58 -05:00
|
|
|
IPA configuration object
|
2009-05-13 07:21:30 -05:00
|
|
|
"""
|
2011-07-12 11:01:25 -05:00
|
|
|
object_name = _('configuration options')
|
2009-08-27 08:49:58 -05:00
|
|
|
default_attributes = [
|
|
|
|
'ipamaxusernamelength', 'ipahomesrootdir', 'ipadefaultloginshell',
|
2010-12-05 02:26:52 -06:00
|
|
|
'ipadefaultprimarygroup', 'ipadefaultemaildomain', 'ipasearchtimelimit',
|
2009-08-27 08:49:58 -05:00
|
|
|
'ipasearchrecordslimit', 'ipausersearchfields', 'ipagroupsearchfields',
|
2010-01-20 10:26:20 -06:00
|
|
|
'ipamigrationenabled', 'ipacertificatesubjectbase',
|
2011-11-23 15:59:21 -06:00
|
|
|
'ipapwdexpadvnotify', 'ipaselinuxusermaporder', 'ipaselinuxusermapdefault',
|
2009-08-27 08:49:58 -05:00
|
|
|
]
|
|
|
|
|
2010-09-24 19:48:23 -05:00
|
|
|
label = _('Configuration')
|
2011-07-13 21:10:47 -05:00
|
|
|
label_singular = _('Configuration')
|
2010-09-24 19:48:23 -05:00
|
|
|
|
2009-08-27 08:49:58 -05:00
|
|
|
takes_params = (
|
2009-05-13 07:21:30 -05:00
|
|
|
Int('ipamaxusernamelength?',
|
|
|
|
cli_name='maxusername',
|
2011-11-10 05:06:49 -06:00
|
|
|
label=_('Maximum username length'),
|
2009-05-13 07:21:30 -05:00
|
|
|
minvalue=1,
|
|
|
|
),
|
2010-12-06 14:09:03 -06:00
|
|
|
IA5Str('ipahomesrootdir?',
|
2009-05-13 07:21:30 -05:00
|
|
|
cli_name='homedirectory',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Home directory base'),
|
2011-11-10 05:06:49 -06:00
|
|
|
doc=_('Default location of home directories'),
|
2009-05-13 07:21:30 -05:00
|
|
|
),
|
|
|
|
Str('ipadefaultloginshell?',
|
|
|
|
cli_name='defaultshell',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Default shell'),
|
2011-11-10 05:06:49 -06:00
|
|
|
doc=_('Default shell for new users'),
|
2009-05-13 07:21:30 -05:00
|
|
|
),
|
|
|
|
Str('ipadefaultprimarygroup?',
|
|
|
|
cli_name='defaultgroup',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Default users group'),
|
2011-11-10 05:06:49 -06:00
|
|
|
doc=_('Default group for new users'),
|
2009-05-13 07:21:30 -05:00
|
|
|
),
|
|
|
|
Str('ipadefaultemaildomain?',
|
|
|
|
cli_name='emaildomain',
|
2011-11-10 05:06:49 -06:00
|
|
|
label=_('Default e-mail domain'),
|
|
|
|
doc=_('Default e-mail domain'),
|
2009-05-13 07:21:30 -05:00
|
|
|
),
|
2011-01-13 12:08:52 -06:00
|
|
|
Int('ipasearchtimelimit?', validate_searchtimelimit,
|
2009-05-13 07:21:30 -05:00
|
|
|
cli_name='searchtimelimit',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Search time limit'),
|
2011-11-10 05:06:49 -06:00
|
|
|
doc=_('Maximum amount of time (seconds) for a search (> 0, or -1 for unlimited)'),
|
2009-05-13 07:21:30 -05:00
|
|
|
minvalue=-1,
|
|
|
|
),
|
|
|
|
Int('ipasearchrecordslimit?',
|
|
|
|
cli_name='searchrecordslimit',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Search size limit'),
|
2011-11-10 05:06:49 -06:00
|
|
|
doc=_('Maximum number of records to search (-1 is unlimited)'),
|
2009-05-13 07:21:30 -05:00
|
|
|
minvalue=-1,
|
|
|
|
),
|
2010-12-06 14:09:03 -06:00
|
|
|
IA5Str('ipausersearchfields?',
|
2009-05-13 07:21:30 -05:00
|
|
|
cli_name='usersearch',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('User search fields'),
|
2011-11-10 05:06:49 -06:00
|
|
|
doc=_('A comma-separated list of fields to search in when searching for users'),
|
2009-05-13 07:21:30 -05:00
|
|
|
),
|
2010-12-06 14:09:03 -06:00
|
|
|
IA5Str('ipagroupsearchfields?',
|
2009-05-13 07:21:30 -05:00
|
|
|
cli_name='groupsearch',
|
2010-01-20 10:26:20 -06:00
|
|
|
label='Group search fields',
|
2011-11-10 05:06:49 -06:00
|
|
|
doc=_('A comma-separated list of fields to search in when searching for groups'),
|
2009-05-13 07:21:30 -05:00
|
|
|
),
|
2009-11-30 05:10:06 -06:00
|
|
|
Bool('ipamigrationenabled?',
|
|
|
|
cli_name='enable_migration',
|
2011-06-30 12:45:35 -05:00
|
|
|
label=_('Enable migration mode'),
|
2011-11-10 05:06:49 -06:00
|
|
|
doc=_('Enable migration mode'),
|
2009-11-30 05:10:06 -06:00
|
|
|
),
|
2010-01-20 10:26:20 -06:00
|
|
|
Str('ipacertificatesubjectbase?',
|
|
|
|
cli_name='subject',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Certificate Subject base'),
|
2011-11-10 05:06:49 -06:00
|
|
|
doc=_('Base for certificate subjects (OU=Test,O=Example)'),
|
2010-12-01 16:48:41 -06:00
|
|
|
flags=['no_update'],
|
|
|
|
),
|
2011-11-21 09:50:27 -06:00
|
|
|
Str('ipagroupobjectclasses*',
|
2010-12-01 16:48:41 -06:00
|
|
|
cli_name='groupobjectclasses',
|
|
|
|
label=_('Default group objectclasses'),
|
2011-11-10 05:06:49 -06:00
|
|
|
doc=_('Default group objectclasses (comma-separated list)'),
|
2011-11-21 09:50:27 -06:00
|
|
|
csv=True,
|
2010-12-01 16:48:41 -06:00
|
|
|
),
|
2011-11-21 09:50:27 -06:00
|
|
|
Str('ipauserobjectclasses*',
|
2010-12-01 16:48:41 -06:00
|
|
|
cli_name='userobjectclasses',
|
|
|
|
label=_('Default user objectclasses'),
|
2011-11-10 05:06:49 -06:00
|
|
|
doc=_('Default user objectclasses (comma-separated list)'),
|
2011-11-21 09:50:27 -06:00
|
|
|
csv=True,
|
2010-12-01 16:48:41 -06:00
|
|
|
),
|
|
|
|
Int('ipapwdexpadvnotify?',
|
|
|
|
cli_name='pwdexpnotify',
|
2011-07-05 13:55:03 -05:00
|
|
|
label=_('Password Expiration Notification (days)'),
|
2011-11-10 05:06:49 -06:00
|
|
|
doc=_('Number of days\'s notice of impending password expiration'),
|
2010-12-01 16:48:41 -06:00
|
|
|
minvalue=0,
|
|
|
|
),
|
|
|
|
Str('ipaconfigstring?',
|
|
|
|
cli_name='ipaconfigstring',
|
|
|
|
label=_('Password plugin features'),
|
2011-11-10 05:06:49 -06:00
|
|
|
doc=_('Extra hashes to generate in password plug-in'),
|
2010-12-01 16:48:41 -06:00
|
|
|
flags=['no_update'],
|
2010-01-20 10:26:20 -06:00
|
|
|
),
|
2011-11-23 15:59:21 -06:00
|
|
|
Str('ipaselinuxusermaporder?',
|
|
|
|
label=_('SELinux user map order'),
|
|
|
|
doc=_('Order in increasing priority of SELinux users, delimited by $'),
|
|
|
|
),
|
|
|
|
Str('ipaselinuxusermapdefault?',
|
|
|
|
label=_('Default SELinux user'),
|
|
|
|
doc=_('Default SELinux user when no match is found in SELinux map rule'),
|
|
|
|
),
|
2009-05-13 07:21:30 -05:00
|
|
|
)
|
|
|
|
|
2009-08-27 08:49:58 -05:00
|
|
|
def get_dn(self, *keys, **kwargs):
|
|
|
|
return 'cn=ipaconfig,cn=etc'
|
2009-05-13 07:21:30 -05:00
|
|
|
|
2009-08-27 08:49:58 -05:00
|
|
|
api.register(config)
|
2009-05-13 07:21:30 -05:00
|
|
|
|
|
|
|
|
2009-08-27 08:49:58 -05:00
|
|
|
class config_mod(LDAPUpdate):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Modify configuration options.')
|
|
|
|
|
2009-11-30 05:10:06 -06:00
|
|
|
def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options):
|
2010-12-06 10:08:10 -06:00
|
|
|
if 'ipadefaultprimarygroup' in entry_attrs:
|
|
|
|
group=entry_attrs['ipadefaultprimarygroup']
|
|
|
|
try:
|
|
|
|
api.Command['group_show'](group)
|
|
|
|
except errors.NotFound:
|
2011-10-11 04:30:48 -05:00
|
|
|
raise errors.NotFound(message=_("The group doesn't exist"))
|
2011-01-25 14:25:52 -06:00
|
|
|
kw = {}
|
|
|
|
if 'ipausersearchfields' in entry_attrs:
|
|
|
|
kw['ipausersearchfields'] = 'ipauserobjectclasses'
|
|
|
|
if 'ipagroupsearchfields' in entry_attrs:
|
|
|
|
kw['ipagroupsearchfields'] = 'ipagroupobjectclasses'
|
|
|
|
if kw:
|
|
|
|
config = ldap.get_ipa_config(kw.values())
|
|
|
|
for (k, v) in kw.iteritems():
|
|
|
|
allowed_attrs = ldap.get_allowed_attributes(config[1][v])
|
|
|
|
fields = entry_attrs[k].split(',')
|
|
|
|
for a in fields:
|
|
|
|
a = a.strip()
|
|
|
|
if a not in allowed_attrs:
|
|
|
|
raise errors.ValidationError(
|
2011-10-11 04:30:48 -05:00
|
|
|
name=k, error=_('attribute "%s" not allowed') % a
|
2011-01-25 14:25:52 -06:00
|
|
|
)
|
2011-10-11 03:26:21 -05:00
|
|
|
|
|
|
|
for (attr, obj) in (('ipauserobjectclasses', 'user'),
|
|
|
|
('ipagroupobjectclasses', 'group')):
|
|
|
|
if attr in entry_attrs:
|
2011-11-08 16:04:26 -06:00
|
|
|
if not entry_attrs[attr]:
|
|
|
|
raise errors.ValidationError(name=attr,
|
|
|
|
error=_('May not be empty'))
|
2011-10-11 03:26:21 -05:00
|
|
|
objectclasses = list(set(entry_attrs[attr] \
|
|
|
|
+ self.api.Object[obj].possible_objectclasses))
|
|
|
|
new_allowed_attrs = ldap.get_allowed_attributes(objectclasses,
|
|
|
|
raise_on_unknown=True)
|
|
|
|
checked_attrs = self.api.Object[obj].default_attributes
|
|
|
|
if self.api.Object[obj].uuid_attribute:
|
|
|
|
checked_attrs = checked_attrs + [self.api.Object[obj].uuid_attribute]
|
|
|
|
for obj_attr in checked_attrs:
|
|
|
|
if obj_attr in OPERATIONAL_ATTRIBUTES:
|
|
|
|
continue
|
|
|
|
if obj_attr not in new_allowed_attrs:
|
|
|
|
raise errors.ValidationError(name=attr,
|
|
|
|
error=_('%s default attribute %s would not be allowed!') \
|
|
|
|
% (obj, obj_attr))
|
|
|
|
|
2011-11-23 15:59:21 -06:00
|
|
|
if 'ipaselinuxusermapdefault' in options and options['ipaselinuxusermapdefault'] is None:
|
|
|
|
raise errors.ValidationError(name='ipaselinuxusermapdefault',
|
|
|
|
error=_('SELinux user map default user may not be empty'))
|
|
|
|
|
|
|
|
# Make sure the default user is in the list
|
|
|
|
if 'ipaselinuxusermapdefault' in options or \
|
|
|
|
'ipaselinuxusermaporder' in options:
|
|
|
|
config = None
|
|
|
|
if 'ipaselinuxusermapdefault' in options:
|
|
|
|
defaultuser = options['ipaselinuxusermapdefault']
|
|
|
|
else:
|
|
|
|
config = ldap.get_ipa_config()[1]
|
|
|
|
defaultuser = config['ipaselinuxusermapdefault']
|
|
|
|
|
|
|
|
if 'ipaselinuxusermaporder' in options:
|
|
|
|
order = options['ipaselinuxusermaporder']
|
|
|
|
else:
|
|
|
|
if not config:
|
|
|
|
config = ldap.get_ipa_config()[1]
|
|
|
|
order = config['ipaselinuxusermaporder']
|
|
|
|
userlist = order[0].split('$')
|
|
|
|
if defaultuser not in userlist:
|
|
|
|
raise errors.ValidationError(name='ipaselinuxusermaporder',
|
|
|
|
error=_('Default SELinux user map default user not in order list'))
|
|
|
|
|
2009-11-30 05:10:06 -06:00
|
|
|
return dn
|
2009-05-13 07:21:30 -05:00
|
|
|
|
2009-07-02 02:50:48 -05:00
|
|
|
api.register(config_mod)
|
2009-05-13 07:21:30 -05:00
|
|
|
|
|
|
|
|
2009-08-27 08:49:58 -05:00
|
|
|
class config_show(LDAPRetrieve):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Show the current configuration.')
|
2009-05-13 07:21:30 -05:00
|
|
|
|
2009-08-27 08:49:58 -05:00
|
|
|
api.register(config_show)
|