2009-05-27 08:55:49 -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
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
"""
|
|
|
|
Hosts/Machines (Identity)
|
2010-06-02 13:08:50 -05:00
|
|
|
|
|
|
|
A host represents a machine. It can be used in a number of contexts:
|
|
|
|
- service entries are associated with a host
|
|
|
|
- a host stores the host/ service principal
|
|
|
|
- a host may be used in Host-Based Access Control (HBAC) rules
|
|
|
|
- every enrolled client generates a host entry
|
|
|
|
|
|
|
|
ENROLLMENT:
|
|
|
|
|
|
|
|
There are three enrollment scenarios when enrolling a new client.
|
|
|
|
|
|
|
|
1. You are enrolling as a full administrator (hostadmin rolegroup). The
|
|
|
|
host entry may exist or not.
|
|
|
|
2. You are enrolling as a limited administrator (enrollhost rolegroup). The
|
|
|
|
host must already exist.
|
|
|
|
3. The host has been created with a one-time password.
|
|
|
|
|
|
|
|
A host may only be enrolled once. If a client has enrolled and needs to
|
|
|
|
be re-enrolled then the host entry needs to be removed and re-created.
|
|
|
|
Note that this will result in all services for this host being removed too,
|
|
|
|
and all SSL certificates associated with those services to be revoked.
|
|
|
|
|
|
|
|
A host can optionally store information such as where it is located,
|
|
|
|
the OS that it runs, etc.
|
|
|
|
|
|
|
|
EXAMPLES:
|
|
|
|
|
|
|
|
Create a new host
|
|
|
|
ipa host-add --location='3rd floor lab' --locality=Dallas test.example.com
|
|
|
|
|
|
|
|
Remove a host
|
|
|
|
ipa host-del test.example.com
|
|
|
|
|
|
|
|
Create a new host with a one-time password
|
|
|
|
ipa host-add --os='Fedora 12' --password=Secret123 test.example.com
|
|
|
|
|
|
|
|
Update information about a host
|
|
|
|
ipa host-mod --os='Fedora 12' test.example.com
|
2009-05-27 08:55:49 -05:00
|
|
|
"""
|
|
|
|
|
2009-09-15 07:01:58 -05:00
|
|
|
import platform
|
|
|
|
import os
|
|
|
|
import sys
|
2009-05-27 08:55:49 -05:00
|
|
|
|
2009-09-15 07:01:58 -05:00
|
|
|
from ipalib import api, errors, util
|
2009-12-16 15:04:53 -06:00
|
|
|
from ipalib import Str, Flag, Bytes
|
2009-09-15 07:01:58 -05:00
|
|
|
from ipalib.plugins.baseldap import *
|
|
|
|
from ipalib.plugins.service import split_principal
|
2009-12-16 15:04:53 -06:00
|
|
|
from ipalib.plugins.service import validate_certificate
|
2009-12-17 10:30:14 -06:00
|
|
|
from ipalib.plugins.service import get_serial
|
2009-12-09 10:09:53 -06:00
|
|
|
from ipalib import _, ngettext
|
2009-12-16 15:04:53 -06:00
|
|
|
import base64
|
2009-05-27 08:55:49 -05:00
|
|
|
|
|
|
|
|
|
|
|
def validate_host(ugettext, fqdn):
|
|
|
|
"""
|
|
|
|
Require at least one dot in the hostname (to support localhost.localdomain)
|
|
|
|
"""
|
2010-02-23 08:24:44 -06:00
|
|
|
if fqdn.find('.') == -1:
|
2010-03-29 10:31:10 -05:00
|
|
|
return _('Fully-qualified hostname required')
|
2009-05-27 08:55:49 -05:00
|
|
|
return None
|
|
|
|
|
|
|
|
|
2009-09-15 07:01:58 -05:00
|
|
|
class host(LDAPObject):
|
2009-05-27 08:55:49 -05:00
|
|
|
"""
|
|
|
|
Host object.
|
|
|
|
"""
|
2009-09-15 07:01:58 -05:00
|
|
|
container_dn = api.env.container_host
|
|
|
|
object_name = 'host'
|
|
|
|
object_name_plural = 'hosts'
|
2009-12-16 15:04:53 -06:00
|
|
|
object_class = ['ipaobject', 'nshost', 'ipahost', 'pkiuser', 'ipaservice']
|
2009-09-15 07:01:58 -05:00
|
|
|
# object_class_config = 'ipahostobjectclasses'
|
|
|
|
default_attributes = [
|
2010-02-12 15:34:21 -06:00
|
|
|
'fqdn', 'description', 'l', 'nshostlocation', 'krbprincipalname',
|
|
|
|
'nshardwareplatform', 'nsosversion', 'usercertificate', 'memberof',
|
2009-09-15 07:01:58 -05:00
|
|
|
]
|
|
|
|
uuid_attribute = 'ipauniqueid'
|
|
|
|
attribute_members = {
|
|
|
|
'enrolledby': ['user'],
|
2009-11-23 08:04:50 -06:00
|
|
|
'memberof': ['hostgroup', 'netgroup', 'rolegroup'],
|
2009-09-15 07:01:58 -05:00
|
|
|
}
|
|
|
|
|
2010-02-08 06:03:28 -06:00
|
|
|
label = _('Hosts')
|
|
|
|
|
2009-05-27 08:55:49 -05:00
|
|
|
takes_params = (
|
|
|
|
Str('fqdn', validate_host,
|
|
|
|
cli_name='hostname',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Host name'),
|
2009-05-27 08:55:49 -05:00
|
|
|
primary_key=True,
|
|
|
|
normalizer=lambda value: value.lower(),
|
|
|
|
),
|
|
|
|
Str('description?',
|
2009-09-15 07:01:58 -05:00
|
|
|
cli_name='desc',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Description'),
|
|
|
|
doc=_('A description of this host'),
|
2009-05-27 08:55:49 -05:00
|
|
|
),
|
2010-02-12 15:34:21 -06:00
|
|
|
Str('l?',
|
2009-05-27 08:55:49 -05:00
|
|
|
cli_name='locality',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Locality'),
|
|
|
|
doc=_('Host locality (e.g. "Baltimore, MD")'),
|
2009-05-27 08:55:49 -05:00
|
|
|
),
|
|
|
|
Str('nshostlocation?',
|
|
|
|
cli_name='location',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Location'),
|
|
|
|
doc=_('Host location (e.g. "Lab 2")'),
|
2009-05-27 08:55:49 -05:00
|
|
|
),
|
|
|
|
Str('nshardwareplatform?',
|
|
|
|
cli_name='platform',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Platform'),
|
|
|
|
doc=_('Host hardware platform (e.g. "Lenovo T61")'),
|
2009-05-27 08:55:49 -05:00
|
|
|
),
|
|
|
|
Str('nsosversion?',
|
|
|
|
cli_name='os',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Operating system'),
|
|
|
|
doc=_('Host operating system and version (e.g. "Fedora 9")'),
|
2009-05-27 08:55:49 -05:00
|
|
|
),
|
|
|
|
Str('userpassword?',
|
|
|
|
cli_name='password',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('User password'),
|
|
|
|
doc=_('Password used in bulk enrollment'),
|
2009-05-27 08:55:49 -05:00
|
|
|
),
|
2009-12-16 15:04:53 -06:00
|
|
|
Bytes('usercertificate?', validate_certificate,
|
|
|
|
cli_name='certificate',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Certificate'),
|
|
|
|
doc=_('Base-64 encoded server certificate'),
|
2009-12-16 15:04:53 -06:00
|
|
|
),
|
2010-02-12 15:34:21 -06:00
|
|
|
Str('krbprincipalname?',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Principal name'),
|
2010-02-12 15:34:21 -06:00
|
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
|
|
),
|
|
|
|
Str('memberof_hostgroup?',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Member of host-groups'),
|
2010-02-12 15:34:21 -06:00
|
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
|
|
),
|
|
|
|
Str('memberof_netgroup?',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Member of net-groups'),
|
2010-02-12 15:34:21 -06:00
|
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
|
|
),
|
|
|
|
Str('memberof_rolegroup?',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Member of role-groups'),
|
2010-02-12 15:34:21 -06:00
|
|
|
flags=['no_create', 'no_update', 'no_search'],
|
|
|
|
),
|
2009-05-27 08:55:49 -05:00
|
|
|
)
|
|
|
|
|
2009-09-15 07:01:58 -05:00
|
|
|
def get_dn(self, *keys, **options):
|
|
|
|
if keys[-1].endswith('.'):
|
|
|
|
keys[-1] = keys[-1][:-1]
|
|
|
|
dn = super(host, self).get_dn(*keys, **options)
|
|
|
|
try:
|
|
|
|
self.backend.get_entry(dn, [''])
|
|
|
|
except errors.NotFound:
|
|
|
|
try:
|
|
|
|
(dn, entry_attrs) = self.backend.find_entry_by_attr(
|
|
|
|
'serverhostname', keys[-1], self.object_class, [''],
|
|
|
|
self.container_dn
|
|
|
|
)
|
|
|
|
except errors.NotFound:
|
|
|
|
pass
|
|
|
|
return dn
|
|
|
|
|
2009-06-16 07:38:27 -05:00
|
|
|
api.register(host)
|
2009-05-27 08:55:49 -05:00
|
|
|
|
|
|
|
|
2009-09-15 07:01:58 -05:00
|
|
|
class host_add(LDAPCreate):
|
2009-05-27 08:55:49 -05:00
|
|
|
"""
|
|
|
|
Create new host.
|
|
|
|
"""
|
2009-12-09 10:09:53 -06:00
|
|
|
|
|
|
|
msg_summary = _('Added host "%(value)s"')
|
|
|
|
|
2009-12-10 09:39:24 -06:00
|
|
|
def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options):
|
2010-01-12 13:09:17 -06:00
|
|
|
if 'locality' in entry_attrs:
|
|
|
|
entry_attrs['l'] = entry_attrs['locality']
|
|
|
|
del entry_attrs['locality']
|
2009-09-15 07:01:58 -05:00
|
|
|
entry_attrs['cn'] = keys[-1]
|
|
|
|
entry_attrs['serverhostname'] = keys[-1].split('.', 1)[0]
|
|
|
|
# FIXME: do DNS lookup to ensure host exists
|
2009-05-27 08:55:49 -05:00
|
|
|
if 'userpassword' not in entry_attrs:
|
|
|
|
entry_attrs['krbprincipalname'] = 'host/%s@%s' % (
|
2009-09-15 07:01:58 -05:00
|
|
|
keys[-1], self.api.env.realm
|
2009-05-27 08:55:49 -05:00
|
|
|
)
|
|
|
|
if 'krbprincipalaux' not in entry_attrs['objectclass']:
|
|
|
|
entry_attrs['objectclass'].append('krbprincipalaux')
|
|
|
|
entry_attrs['objectclass'].append('krbprincipal')
|
|
|
|
elif 'krbprincipalaux' in entry_attrs['objectclass']:
|
|
|
|
entry_attrs['objectclass'].remove('krbprincipalaux')
|
2009-12-16 15:04:53 -06:00
|
|
|
entry_attrs['managedby'] = dn
|
2009-09-15 07:01:58 -05:00
|
|
|
return dn
|
2009-05-27 08:55:49 -05:00
|
|
|
|
2009-06-16 09:51:44 -05:00
|
|
|
api.register(host_add)
|
2009-05-27 08:55:49 -05:00
|
|
|
|
|
|
|
|
2009-09-15 07:01:58 -05:00
|
|
|
class host_del(LDAPDelete):
|
2009-05-27 08:55:49 -05:00
|
|
|
"""
|
|
|
|
Delete host.
|
|
|
|
"""
|
2009-12-09 10:09:53 -06:00
|
|
|
|
|
|
|
msg_summary = _('Deleted host "%(value)s"')
|
|
|
|
|
2009-09-15 07:01:58 -05:00
|
|
|
def pre_callback(self, ldap, dn, *keys, **options):
|
2010-03-29 10:31:10 -05:00
|
|
|
# If we aren't given a fqdn, find it
|
|
|
|
if validate_host(None, keys[-1]) is not None:
|
|
|
|
hostentry = api.Command['host_show'](keys[-1])['result']
|
|
|
|
fqdn = hostentry['fqdn'][0]
|
|
|
|
else:
|
|
|
|
fqdn = keys[-1]
|
2009-05-27 08:55:49 -05:00
|
|
|
# Remove all service records for this host
|
2009-09-15 07:01:58 -05:00
|
|
|
truncated = True
|
|
|
|
while truncated:
|
|
|
|
try:
|
2010-03-29 10:31:10 -05:00
|
|
|
ret = api.Command['service_find'](fqdn)
|
2009-12-09 10:09:53 -06:00
|
|
|
truncated = ret['truncated']
|
|
|
|
services = ret['result']
|
2009-09-15 07:01:58 -05:00
|
|
|
except errors.NotFound:
|
|
|
|
break
|
|
|
|
else:
|
2009-12-09 10:09:53 -06:00
|
|
|
for entry_attrs in services:
|
2009-09-15 07:01:58 -05:00
|
|
|
principal = entry_attrs['krbprincipalname'][0]
|
|
|
|
(service, hostname, realm) = split_principal(principal)
|
2010-03-29 10:31:10 -05:00
|
|
|
if hostname.lower() == fqdn:
|
2009-09-15 07:01:58 -05:00
|
|
|
api.Command['service_del'](principal)
|
|
|
|
return dn
|
2009-05-27 08:55:49 -05:00
|
|
|
|
2009-06-16 09:51:44 -05:00
|
|
|
api.register(host_del)
|
2009-05-27 08:55:49 -05:00
|
|
|
|
|
|
|
|
2009-09-15 07:01:58 -05:00
|
|
|
class host_mod(LDAPUpdate):
|
2009-05-27 08:55:49 -05:00
|
|
|
"""
|
|
|
|
Modify host.
|
|
|
|
"""
|
2009-12-09 10:09:53 -06:00
|
|
|
|
|
|
|
msg_summary = _('Modified host "%(value)s"')
|
|
|
|
|
2009-09-15 07:01:58 -05:00
|
|
|
takes_options = LDAPUpdate.takes_options + (
|
2009-09-14 16:04:08 -05:00
|
|
|
Str('krbprincipalname?',
|
|
|
|
cli_name='principalname',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Principal name'),
|
|
|
|
doc=_('Kerberos principal name for this host'),
|
2009-09-15 07:01:58 -05:00
|
|
|
attribute=True,
|
2009-09-14 16:04:08 -05:00
|
|
|
),
|
|
|
|
)
|
|
|
|
|
2009-09-15 07:01:58 -05:00
|
|
|
def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options):
|
2009-09-14 16:04:08 -05:00
|
|
|
# Once a principal name is set it cannot be changed
|
2010-01-12 13:09:17 -06:00
|
|
|
if 'locality' in entry_attrs:
|
|
|
|
entry_attrs['l'] = entry_attrs['locality']
|
|
|
|
del entry_attrs['locality']
|
2009-09-14 16:04:08 -05:00
|
|
|
if 'krbprincipalname' in entry_attrs:
|
2009-09-15 07:01:58 -05:00
|
|
|
(dn, entry_attrs_old) = ldap.get_entry(
|
|
|
|
dn, ['objectclass', 'krbprincipalname']
|
|
|
|
)
|
|
|
|
if 'krbprincipalname' in entry_attrs_old:
|
|
|
|
msg = 'Principal name already set, it is unchangeable.'
|
|
|
|
raise errors.ACIError(info=msg)
|
|
|
|
obj_classes = entry_attrs_old['objectclass']
|
|
|
|
if 'krbprincipalaux' not in obj_classes:
|
|
|
|
obj_classes.append('krbprincipalaux')
|
|
|
|
entry_attrs['objectclass'] = obj_classes
|
2009-12-16 15:04:53 -06:00
|
|
|
cert = entry_attrs.get('usercertificate')
|
|
|
|
if cert:
|
|
|
|
(dn, entry_attrs_old) = ldap.get_entry(dn, ['usercertificate'])
|
|
|
|
if 'usercertificate' in entry_attrs_old:
|
|
|
|
# FIXME: what to do here? do we revoke the old cert?
|
|
|
|
fmt = 'entry already has a certificate, serial number: %s' % (
|
|
|
|
get_serial(entry_attrs_old['usercertificate'])
|
|
|
|
)
|
|
|
|
raise errors.GenericError(format=fmt)
|
|
|
|
# FIXME: should be in normalizer; see service_add
|
|
|
|
entry_attrs['usercertificate'] = base64.b64decode(cert)
|
|
|
|
|
2009-09-15 07:01:58 -05:00
|
|
|
return dn
|
2009-05-27 08:55:49 -05:00
|
|
|
|
2009-06-16 07:38:27 -05:00
|
|
|
api.register(host_mod)
|
2009-05-27 08:55:49 -05:00
|
|
|
|
|
|
|
|
2009-09-15 07:01:58 -05:00
|
|
|
class host_find(LDAPSearch):
|
2009-05-27 08:55:49 -05:00
|
|
|
"""
|
|
|
|
Search for hosts.
|
|
|
|
"""
|
|
|
|
|
2009-12-09 10:09:53 -06:00
|
|
|
msg_summary = ngettext(
|
|
|
|
'%(count)d host matched', '%(count)d hosts matched'
|
|
|
|
)
|
|
|
|
|
2010-01-12 13:09:17 -06:00
|
|
|
def pre_callback(self, ldap, filter, attrs_list, base_dn, *args, **options):
|
|
|
|
if 'locality' in attrs_list:
|
|
|
|
attrs_list.remove('locality')
|
|
|
|
attrs_list.append('l')
|
|
|
|
return filter.replace('locality', 'l')
|
|
|
|
|
2009-06-16 07:38:27 -05:00
|
|
|
api.register(host_find)
|
2009-05-27 08:55:49 -05:00
|
|
|
|
|
|
|
|
2009-09-15 07:01:58 -05:00
|
|
|
class host_show(LDAPRetrieve):
|
2009-05-27 08:55:49 -05:00
|
|
|
"""
|
|
|
|
Display host.
|
|
|
|
"""
|
|
|
|
|
2009-06-16 07:38:27 -05:00
|
|
|
api.register(host_show)
|