summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/host.py
blob: bf720abbc31d4311f1ee5e523835115352feb7a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
# 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)
"""

from ipalib import api, crud, errors, util
from ipalib import Object
from ipalib import Str, Flag, List
from ipalib.plugins.service import split_principal
from ipalib import uuid

_container_dn = api.env.container_host
_default_attributes = [
    'fqdn', 'description', 'localityname', 'nshostlocation',
    'nshardwareplatform', 'nsosversion'
]


def get_host(ldap, hostname):
    """
    Try to get the hostname as fully-qualified first, then fall back to
    just a host name search.
    """
    if hostname.endswith('.'):
        hostname = hostname[:-1]
    try:
        dn = ldap.find_entry_by_attr('fqdn', hostname, 'ipaHost')[0]
    except errors.NotFound:
        dn = ldap.find_entry_by_attr('serverhostname', hostname, 'ipaHost')[0]
    return dn

def validate_host(ugettext, fqdn):
    """
    Require at least one dot in the hostname (to support localhost.localdomain)
    """
    if fqdn.index('.') == -1:
        return 'Fully-qualified hostname required'
    return None


class host(Object):
    """
    Host object.
    """
    takes_params = (
        # FIXME: All Object params get cloned with query=True in the new
        #        CRUD base classes, so there's no validation going on
        Str('fqdn', validate_host,
            cli_name='hostname',
            doc='Hostname',
            primary_key=True,
            normalizer=lambda value: value.lower(),
        ),
        Str('description?',
            doc='Description of the host',
        ),
        Str('localityname?',
            cli_name='locality',
            doc='Locality of the host (Baltimore, MD)',
        ),
        Str('nshostlocation?',
            cli_name='location',
            doc='Location of the host (e.g. Lab 2)',
        ),
        Str('nshardwareplatform?',
            cli_name='platform',
            doc='Hardware platform of the host (e.g. Lenovo T61)',
        ),
        Str('nsosversion?',
            cli_name='os',
            doc='Operating System and version of the host (e.g. Fedora 9)',
        ),
        Str('userpassword?',
            cli_name='password',
            doc='Password used in bulk enrollment',
        ),
    )

api.register(host)


class host_add(crud.Create):
    """
    Create new host.
    """
    def execute(self, hostname, **kw):
        """
        Execute the host-add operation.

        The dn should not be passed as a keyword argument as it is constructed
        by this method.

        If password is set then this is considered a 'bulk' host so we
        do not create a kerberos service principal.

        Returns the entry as it will be created in LDAP.

        :param hostname: The name of the host being added.
        :param kw: Keyword arguments for the other LDAP attributes.
        """
        assert 'fqdn' not in kw
        assert 'cn' not in kw
        assert 'dn' not in kw
        assert 'krbprincipalname' not in kw
        ldap = self.api.Backend.ldap2

        entry_attrs = self.args_options_2_entry(hostname, **kw)
        entry_attrs['cn'] = hostname
        entry_attrs['serverhostname'] = hostname.split('.', 1)[0]

        dn = ldap.make_dn(entry_attrs, 'fqdn', _container_dn)

        # FIXME: do a DNS lookup to ensure host exists

        # FIXME: add this attribute to cn=ipaconfig
        # config = ldap.get_ipa_config()[1]
        # kw['objectclass'] =  config.get('ipahostobjectclasses')
        entry_attrs['objectclass'] = ['ipaobject', 'nshost', 'ipahost', 'pkiuser']

        if 'userpassword' not in entry_attrs:
            entry_attrs['krbprincipalname'] = 'host/%s@%s' % (
                hostname, self.api.env.realm
            )
            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')

        entry_attrs['ipauniqueid'] = str(uuid.uuid1())

        ldap.add_entry(dn, entry_attrs)

        return ldap.get_entry(dn, entry_attrs.keys())

    def output_for_cli(self, textui, result, hostname, **options):
        """
        Output result of this command to command line interface.
        """
        (dn, entry_attrs) = result

        textui.print_name(self.name)
        textui.print_attribute('dn', dn)
        textui.print_entry(entry_attrs)
        textui.print_dashed('Created host "%s".' % hostname)

api.register(host_add)


class host_del(crud.Delete):
    """
    Delete host.
    """
    def execute(self, hostname, **kw):
        """
        Delete a host.

        hostname is the name of the host to delete

        :param hostname: The name of the host being removed.
        :param kw: Not used.
        """
        ldap = self.api.Backend.ldap2
        dn = get_host(ldap, hostname)
        hostname = hostname.lower()

        # Remove all service records for this host
        (services, truncated) = api.Command['service_find'](hostname)
        for (dn_, entry_attrs) in services:
            principal = entry_attrs['krbprincipalname'][0]
            (service, hostname_, realm) = split_principal(principal)
            if hostname_.lower() == hostname:
                api.Command['service_del'](principal)

        ldap.delete_entry(dn)

        return True

    def output_for_cli(self, textui, result, hostname, **options):
        """
        Output result of this command to command line interface.
        """
        textui.print_name(self.name)
        textui.print_dashed('Deleted host "%s".' % hostname)

api.register(host_del)


class host_mod(crud.Update):
    """
    Modify host.
    """

    takes_options = (
        Str('krbprincipalname?',
            cli_name='principalname',
            doc='Kerberos principal name for this host',
            attribute=True
        ),
    )

    def execute(self, hostname, **kw):
        """
        Execute the host-mod operation.

        The dn should not be passed as a keyword argument as it is constructed
        by this method.

        Returns the entry

        :param hostname: The name of the host to retrieve.
        :param kw: Keyword arguments for the other LDAP attributes.
        """
        assert 'fqdn' not in kw
        assert 'dn' not in kw
        ldap = self.api.Backend.ldap2
        dn = get_host(ldap, hostname)

        entry_attrs = self.args_options_2_entry(**kw)

        # Once a principal name is set it cannot be changed
        if 'krbprincipalname' in entry_attrs:
            (d, e) = api.Command['host_show'](hostname, all=True)
            if 'krbprincipalname' in e:
                raise errors.ACIError(info='Principal name already set, it is unchangeable.')
            entry_attrs['objectclass'] = e['objectclass']
            entry_attrs['objectclass'].append('krbprincipalaux')

        try:
            ldap.update_entry(dn, entry_attrs)
        except errors.EmptyModlist:
            pass

        return ldap.get_entry(dn, entry_attrs.keys())

    def output_for_cli(self, textui, result, hostname, **options):
        """
        Output result of this command to command line interface.
        """
        (dn, entry_attrs) = result

        textui.print_name(self.name)
        textui.print_attribute('dn', dn)
        textui.print_entry(entry_attrs)
        textui.print_dashed('Modified host "%s".' % hostname)

api.register(host_mod)


class host_find(crud.Search):
    """
    Search for hosts.
    """

    takes_options = (
        Flag('all',
            doc='Retrieve all attributes'
        ),
    )

    def execute(self, term, **kw):
        ldap = self.api.Backend.ldap2

        search_kw = self.args_options_2_entry(**kw)
        search_kw['objectclass'] = 'ipaHost'
        filter = ldap.make_filter(search_kw, rules=ldap.MATCH_ALL)

        search_kw = {}
        for a in _default_attributes:
            search_kw[a] = term
        term_filter = ldap.make_filter(search_kw, exact=False)

        filter = ldap.combine_filters(
            (filter, term_filter), rules=ldap.MATCH_ALL
        )

        if kw['all']:
            attrs_list = ['*']
        else:
            attrs_list = _default_attributes

        try:
            (entries, truncated) = ldap.find_entries(
                filter, attrs_list, _container_dn
            )
        except errors.NotFound:
            (entries, truncated) = (tuple(), False)

        return (entries, truncated)

    def output_for_cli(self, textui, result, term, **options):
        (entries, truncated) = result

        textui.print_name(self.name)
        for (dn, entry_attrs) in entries:
            textui.print_attribute('dn', dn)
            textui.print_entry(entry_attrs)
            textui.print_plain('')
        textui.print_count(
            len(entries), '%i host matched.', '%i hosts matched.'
        )
        if truncated:
            textui.print_dashed('These results are truncated.', below=False)
            textui.print_dashed(
                'Please refine your search and try again.', above=False
            )

api.register(host_find)


class host_show(crud.Retrieve):
    """
    Display host.
    """
    takes_options = (
        Flag('all',
            cli_short_name='a',
            doc='Retrieve all attributes'
        ),
        List('attrs?',
            doc='comma-separated list of attributes to display'
        ),
    )

    def execute(self, hostname, **kw):
        """
        Execute the host-show operation.

        The dn should not be passed as a keyword argument as it is constructed
        by this method.

        Returns the entry

        :param hostname: The login name of the host to retrieve.
        :param kw: "all" set to True = return all attributes
        """
        ldap = self.api.Backend.ldap2
        dn = get_host(ldap, hostname)

        if kw['all']:
            attrs_list = ['*']
        else:
            if 'attrs' in kw:
                attrs_list = kw['attrs']
            else:
                attrs_list = _default_attributes

        return ldap.get_entry(dn, attrs_list)

    def output_for_cli(self, textui, result, *args, **options):
        (dn, entry_attrs) = result

        textui.print_name(self.name)
        textui.print_attribute('dn', dn)
        textui.print_entry(entry_attrs)

api.register(host_show)