redhat_subscription 13.8 KB
Newer Older
1 2 3 4
#!/usr/bin/python

DOCUMENTATION = '''
---
Michael DeHaan committed
5
module: redhat_subscription
6
short_description: Manage Red Hat Network registration and subscriptions using the C(subscription-manager) command
7
description:
8
    - Manage registration and subscription to the Red Hat Network entitlement platform.
Michael DeHaan committed
9
version_added: "1.2"
10 11
author: James Laska
notes:
Michael DeHaan committed
12
    - In order to register a system, subscription-manager requires either a username and password, or an activationkey.
13
requirements:
14
    - subscription-manager
15
options:
16 17 18 19 20 21
    state:
        description:
          - whether to register and subscribe (C(present)), or unregister (C(absent)) a system
        required: false
        choices: [ "present", "absent" ]
        default: "present"
22
    username:
Michael DeHaan committed
23
        description:
24
            - Red Hat Network username
Michael DeHaan committed
25
        required: False
26 27 28
        default: null
    password:
        description:
29
            - Red Hat Network password
Michael DeHaan committed
30
        required: False
31 32 33
        default: null
    server_hostname:
        description:
34
            - Specify an alternative Red Hat Network server
Michael DeHaan committed
35
        required: False
36
        default: Current value from C(/etc/rhsm/rhsm.conf) is the default
37 38
    server_insecure:
        description:
39
            - Allow traffic over insecure http
Michael DeHaan committed
40
        required: False
41
        default: Current value from C(/etc/rhsm/rhsm.conf) is the default
42 43 44
    rhsm_baseurl:
        description:
            - Specify CDN baseurl
Michael DeHaan committed
45
        required: False
46
        default: Current value from C(/etc/rhsm/rhsm.conf) is the default
47 48
    autosubscribe:
        description:
Michael DeHaan committed
49 50 51
            - Upon successful registration, auto-consume available subscriptions
        required: False
        default: False
52 53 54
    activationkey:
        description:
            - supply an activation key for use with registration
Michael DeHaan committed
55
        required: False
56 57 58
        default: null
    pool:
        description:
Michael DeHaan committed
59 60
            - Specify a subscription pool name to consume.  Regular expressions accepted.
        required: False
61
        default: '^$'
62 63 64 65 66 67 68 69 70 71 72
'''

EXAMPLES = '''
# Register as user (joe_user) with password (somepass) and auto-subscribe to available content.
- redhat_subscription: action=register username=joe_user password=somepass autosubscribe=true

# Register with activationkey (1-222333444) and consume subscriptions matching
# the names (Red hat Enterprise Server) and (Red Hat Virtualization)
- redhat_subscription: action=register
                       activationkey=1-222333444
                       pool='^(Red Hat Enterprise Server|Red Hat Virtualization)$'
73 74 75 76 77 78 79 80 81
'''

import os
import re
import types
import ConfigParser
import shlex


82 83 84
class RegistrationBase(object):
    def __init__(self, module, username=None, password=None):
        self.module = module
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
        self.username = username
        self.password = password

    def configure(self):
        raise NotImplementedError("Must be implemented by a sub-class")

    def enable(self):
        # Remove any existing redhat.repo
        redhat_repo = '/etc/yum.repos.d/redhat.repo'
        if os.path.isfile(redhat_repo):
            os.unlink(redhat_repo)

    def register(self):
        raise NotImplementedError("Must be implemented by a sub-class")

    def unregister(self):
        raise NotImplementedError("Must be implemented by a sub-class")

    def unsubscribe(self):
        raise NotImplementedError("Must be implemented by a sub-class")

    def update_plugin_conf(self, plugin, enabled=True):
        plugin_conf = '/etc/yum/pluginconf.d/%s.conf' % plugin
        if os.path.isfile(plugin_conf):
            cfg = ConfigParser.ConfigParser()
            cfg.read([plugin_conf])
            if enabled:
                cfg.set('main', 'enabled', 1)
            else:
                cfg.set('main', 'enabled', 0)
            fd = open(plugin_conf, 'rwa+')
            cfg.write(fd)
            fd.close()

    def subscribe(self, **kwargs):
        raise NotImplementedError("Must be implemented by a sub-class")


class Rhsm(RegistrationBase):
124 125
    def __init__(self, module, username=None, password=None):
        RegistrationBase.__init__(self, module, username, password)
126
        self.config = self._read_config()
127
        self.module = module
128

129
    def _read_config(self, rhsm_conf='/etc/rhsm/rhsm.conf'):
130 131 132 133 134 135 136 137
        '''
            Load RHSM configuration from /etc/rhsm/rhsm.conf.
            Returns:
             * ConfigParser object
        '''

        # Read RHSM defaults ...
        cp = ConfigParser.ConfigParser()
138
        cp.read(rhsm_conf)
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

        # Add support for specifying a default value w/o having to standup some configuration
        # Yeah, I know this should be subclassed ... but, oh well
        def get_option_default(self, key, default=''):
            sect, opt = key.split('.', 1)
            if self.has_section(sect) and self.has_option(sect, opt):
                return self.get(sect, opt)
            else:
                return default

        cp.get_option = types.MethodType(get_option_default, cp, ConfigParser.ConfigParser)

        return cp

    def enable(self):
        '''
            Enable the system to receive updates from subscription-manager.
            This involves updating affected yum plugins and removing any
            conflicting yum repositories.
        '''
        RegistrationBase.enable(self)
        self.update_plugin_conf('rhnplugin', False)
        self.update_plugin_conf('subscription-manager', True)

    def configure(self, **kwargs):
        '''
            Configure the system as directed for registration with RHN
            Raises:
              * Exception - if error occurs while running command
        '''
        args = ['subscription-manager', 'config']

        # Pass supplied **kwargs as parameters to subscription-manager.  Ignore
        # non-configuration parameters and replace '_' with '.'.  For example,
        # 'server_hostname' becomes '--system.hostname'.
        for k,v in kwargs.items():
            if re.search(r'^(system|rhsm)_', k):
                args.append('--%s=%s' % (k.replace('_','.'), v))
177 178
        
        self.module.run_command(args, check_rc=True)
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193

    @property
    def is_registered(self):
        '''
            Determine whether the current system
            Returns:
              * Boolean - whether the current system is currently registered to
                          RHN.
        '''
        # Quick version...
        if False:
            return os.path.isfile('/etc/pki/consumer/cert.pem') and \
                   os.path.isfile('/etc/pki/consumer/key.pem')

        args = ['subscription-manager', 'identity']
194 195
        rc, stdout, stderr = self.module.run_command(args, check_rc=False)
        if rc == 0:
196
            return True
197 198
        else:
            return False
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218

    def register(self, username, password, autosubscribe, activationkey):
        '''
            Register the current system to the provided RHN server
            Raises:
              * Exception - if error occurs while running command
        '''
        args = ['subscription-manager', 'register']

        # Generate command arguments
        if activationkey:
            args.append('--activationkey "%s"' % activationkey)
        else:
            if autosubscribe:
                args.append('--autosubscribe')
            if username:
                args.extend(['--username', username])
            if password:
                args.extend(['--password', password])

219
        rc, stderr, stdout = self.module.run_command(args, check_rc=True)
220 221 222 223 224 225 226 227

    def unsubscribe(self):
        '''
            Unsubscribe a system from all subscribed channels
            Raises:
              * Exception - if error occurs while running command
        '''
        args = ['subscription-manager', 'unsubscribe', '--all']
228
        rc, stderr, stdout = self.module.run_command(args, check_rc=True)
229 230 231 232 233 234 235 236

    def unregister(self):
        '''
            Unregister a currently registered system
            Raises:
              * Exception - if error occurs while running command
        '''
        args = ['subscription-manager', 'unregister']
237
        rc, stderr, stdout = self.module.run_command(args, check_rc=True)
238 239 240 241 242 243 244 245 246 247

    def subscribe(self, regexp):
        '''
            Subscribe current system to available pools matching the specified
            regular expression
            Raises:
              * Exception - if error occurs while running command
        '''

        # Available pools ready for subscription
248
        available_pools = RhsmPools(self.module)
249 250 251 252 253

        for pool in available_pools.filter(regexp):
            pool.subscribe()


254
class RhsmPool(object):
255 256 257
    '''
        Convenience class for housing subscription information
    '''
Michael DeHaan committed
258

259 260
    def __init__(self, module, **kwargs):
        self.module = module
261 262
        for k,v in kwargs.items():
            setattr(self, k, v)
Michael DeHaan committed
263

264 265
    def __str__(self):
        return str(self.__getattribute__('_name'))
Michael DeHaan committed
266

267
    def subscribe(self):
268 269 270 271 272 273
        args = "subscription-manager subscribe --pool %s" % self.PoolId
        rc, stdout, stderr = self.module.run_command(args, check_rc=True)
        if rc == 0:
            return True
        else:
            return False
274 275 276 277 278 279


class RhsmPools(object):
    """
        This class is used for manipulating pools subscriptions with RHSM
    """
280 281
    def __init__(self, module):
        self.module = module
282 283 284 285 286 287 288 289 290
        self.products = self._load_product_list()

    def __iter__(self):
        return self.products.__iter__()

    def _load_product_list(self):
        """
            Loads list of all availaible pools for system in data structure
        """
291 292
        args = "subscription-manager list --available"
        rc, stdout, stderr = self.module.run_command(args, check_rc=True)
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307

        products = []
        for line in stdout.split('\n'):
            # Remove leading+trailing whitespace
            line = line.strip()
            # An empty line implies the end of a output group
            if len(line) == 0:
                continue
            # If a colon ':' is found, parse
            elif ':' in line:
                (key, value) = line.split(':',1)
                key = key.strip().replace(" ", "")  # To unify
                value = value.strip()
                if key in ['ProductName', 'SubscriptionName']:
                    # Remember the name for later processing
308
                    products.append(RhsmPool(self.module, _name=value, key=value))
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
                elif products:
                    # Associate value with most recently recorded product
                    products[-1].__setattr__(key, value)
                # FIXME - log some warning?
                #else:
                    # warnings.warn("Unhandled subscription key/value: %s/%s" % (key,value))
        return products

    def filter(self, regexp='^$'):
        '''
            Return a list of RhsmPools whose name matches the provided regular expression
        '''
        r = re.compile(regexp)
        for product in self.products:
            if r.search(product._name):
                yield product


def main():

    # Load RHSM configuration from file
330
    rhn = Rhsm(None)
331 332 333 334 335 336

    module = AnsibleModule(
                argument_spec = dict(
                    state = dict(default='present', choices=['present', 'absent']),
                    username = dict(default=None, required=False),
                    password = dict(default=None, required=False),
337 338 339
                    server_hostname = dict(default=rhn.config.get_option('server.hostname'), required=False),
                    server_insecure = dict(default=rhn.config.get_option('server.insecure'), required=False),
                    rhsm_baseurl = dict(default=rhn.config.get_option('rhsm.baseurl'), required=False),
340 341 342 343 344 345
                    autosubscribe = dict(default=False, type='bool'),
                    activationkey = dict(default=None, required=False),
                    pool = dict(default='^$', required=False, type='str'),
                )
            )

346
    rhn.module = module
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
    state = module.params['state']
    username = module.params['username']
    password = module.params['password']
    server_hostname = module.params['server_hostname']
    server_insecure = module.params['server_insecure']
    rhsm_baseurl = module.params['rhsm_baseurl']
    autosubscribe = module.params['autosubscribe'] == True
    activationkey = module.params['activationkey']
    pool = module.params['pool']

    # Ensure system is registered
    if state == 'present':

        # Check for missing parameters ...
        if not (activationkey or username or password):
            module.fail_json(msg="Missing arguments, must supply an activationkey (%s) or username (%s) and password (%s)" % (activationkey, username, password))
        if not activationkey and not (username and password):
            module.fail_json(msg="Missing arguments, If registering without an activationkey, must supply username or password")

        # Register system
367
        if rhn.is_registered:
368 369 370
            module.exit_json(changed=False, msg="System already registered.")
        else:
            try:
371 372 373 374
                rhn.enable()
                rhn.configure(**module.params)
                rhn.register(username, password, autosubscribe, activationkey)
                rhn.subscribe(pool)
375
            except Exception, e:
376 377 378 379 380 381
                module.fail_json(msg="Failed to register with '%s': %s" % (server_hostname, e))
            else:
                module.exit_json(changed=True, msg="System successfully registered to '%s'." % server_hostname)

    # Ensure system is *not* registered
    if state == 'absent':
382
        if not rhn.is_registered:
383 384 385
            module.exit_json(changed=False, msg="System already unregistered.")
        else:
            try:
386 387
                rhn.unsubscribe()
                rhn.unregister()
388
            except Exception, e:
389 390 391 392 393
                module.fail_json(msg="Failed to unregister: %s" % e)
            else:
                module.exit_json(changed=True, msg="System successfully unregistered from %s." % server_hostname)


394 395
# import module snippets
from ansible.module_utils.basic import *
396
main()