selinux 6.07 KB
Newer Older
Derek Carter committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/usr/bin/python
# -*- coding: utf-8 -*-

# (c) 2012, Derek Carter<goozbach@friocorte.com>
#
# This file is part of Ansible
#
# Ansible 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.
#
# Ansible 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 Ansible.  If not, see <http://www.gnu.org/licenses/>.

21 22 23 24 25 26 27 28 29 30
DOCUMENTATION = '''
---
module: selinux
short_description: Change policy and state of SELinux
description:
  - Configures the SELinux mode and policy. A reboot may be required after usage. Ansible will not issue this reboot but will let you know when it is required.
version_added: "0.7"
options:
  policy:
    description:
31 32
      - "name of the SELinux policy to use (example: 'targeted') will be required if state is not 'disabled'"
    required: false
33 34 35 36 37 38 39 40 41 42 43 44 45
    default: null
  state:
    description:
      - The SELinux mode
    required: true
    default: null
    choices: [ "enforcing", "permissive", "disabled" ]
  conf:
    description:
      - path to the SELinux configuration file, if non-standard
    required: false
    default: "/etc/selinux/config"
examples:
46 47 48
   - code: "selinux: policy=targeted state=enforcing"
   - code: "selinux: policy=targeted state=permissive"
   - code: "selinux: state=disabled"
49 50
notes:
   - Not tested on any debian based system
51 52
requirements: [ libselinux-python ]
author: Derek Carter <goozbach@friocorte.com>
53
'''
Derek Carter committed
54 55 56

import os
import re
Michael DeHaan committed
57
import sys
Derek Carter committed
58 59 60 61

try:
    import selinux
except ImportError:
62 63
    print "failed=True msg='python-selinux required for this module'"
    sys.exit(1)
Derek Carter committed
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

# getter subroutines
def get_config_state(configfile):
    myfile = open(configfile, "r")
    lines = myfile.readlines()
    myfile.close()
    for line in lines:
        stateline = re.match('^SELINUX=.*$', line)
        if (stateline):
            return(line.split('=')[1].strip())

def get_config_policy(configfile):
    myfile = open(configfile, "r")
    lines = myfile.readlines()
    myfile.close()
    for line in lines:
        stateline = re.match('^SELINUXTYPE=.*$', line)
        if (stateline):
            return(line.split('=')[1].strip())

# setter subroutines
def set_config_state(state, configfile):
    #SELINUX=permissive
    # edit config file with state value
    stateline='SELINUX=%s' % state
    myfile = open(configfile, "r")
    lines = myfile.readlines()
    myfile.close()
    myfile = open(configfile, "w")
    for line in lines:
        myfile.write(re.sub(r'^SELINUX=.*', stateline, line))
    myfile.close()

def set_state(state):
    if (state == 'enforcing'):
        selinux.security_setenforce(1)
    elif (state == 'permissive'):
        selinux.security_setenforce(0)
    elif (state == 'disabled'):
        pass
    else:
        msg = 'trying to set invalid runtime state %s' % state
106
        module.fail_json(msg=msg)
Derek Carter committed
107 108 109

def set_config_policy(policy, configfile):
    # edit config file with state value
110
    #SELINUXTYPE=targeted
Derek Carter committed
111 112 113 114 115 116 117 118 119 120 121 122 123
    policyline='SELINUXTYPE=%s' % policy
    myfile = open(configfile, "r")
    lines = myfile.readlines()
    myfile.close()
    myfile = open(configfile, "w")
    for line in lines:
        myfile.write(re.sub(r'^SELINUXTYPE=.*', policyline, line))
    myfile.close()

def main():

    module = AnsibleModule(
        argument_spec = dict(
124
            policy=dict(required=False),
Michael DeHaan committed
125
            state=dict(choices=['enforcing', 'permissive', 'disabled'], required=True),
Derek Carter committed
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
            configfile=dict(aliases=['conf','file'], default='/etc/selinux/config')
        )
    )

    # global vars
    changed=False
    msgs                  = []
    configfile            = module.params['configfile']
    policy                = module.params['policy']
    state                 = module.params['state']
    runtime_enabled       = selinux.is_selinux_enabled()
    runtime_policy        = selinux.selinux_getpolicytype()[1]
    runtime_state         = 'disabled'
    if (runtime_enabled):
        # enabled means 'enforcing' or 'permissive'
        if (selinux.security_getenforce()):
            runtime_state = 'enforcing'
        else:
            runtime_state = 'permissive'
    config_policy         = get_config_policy(configfile)
    config_state          = get_config_state(configfile)

148 149 150 151 152 153 154 155
    # check to see if policy is set if state is not 'disabled'
    if (state != 'disabled'):
        if (policy == '' or policy == None):
            module.fail_json(msg='policy is required if state is not \'disabled\'')
    else:
        if (policy == '' or policy == None):
            policy = config_policy

Derek Carter committed
156 157 158 159
    # check changed values and run changes
    if (policy != runtime_policy):
        # cannot change runtime policy
        msgs.append('reboot to change the loaded policy')
160
        changed=True
Derek Carter committed
161 162 163 164

    if (policy != config_policy):
        msgs.append('config policy changed from \'%s\' to \'%s\'' % (config_policy, policy))
        set_config_policy(policy, configfile)
165
        changed=True
Derek Carter committed
166 167 168

    if (state != runtime_state):
        if (state == 'disabled'):
169
            msgs.append('state change will take effect next reboot')
Derek Carter committed
170
        else:
171 172 173 174 175
            if (runtime_enabled):
                set_state(state)
                msgs.append('runtime state changed from \'%s\' to \'%s\'' % (runtime_state, state))
            else:
                msgs.append('state change will take effect next reboot')
176
        changed=True
Derek Carter committed
177 178 179 180

    if (state != config_state):
        msgs.append('config state changed from \'%s\' to \'%s\'' % (config_state, state))
        set_config_state(state, configfile)
181 182
        changed=True

Derek Carter committed
183 184 185 186 187 188 189 190 191
    module.exit_json(changed=changed, msg=', '.join(msgs),
        configfile=configfile,
        policy=policy, state=state)

#################################################
# include magic from lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>

main()