Files
@ 9fa438ee34c0
Branch filter:
Location: majic-ansible-roles/roles/ldap_server/library/ldap_entry.py
9fa438ee34c0
11.0 KiB
text/x-python
MAR-5: Added another example to role reference for running PHP websites. Allow duplicates of roles php_website and wsgi_website. Use parameter in handler for restarting WSGI website (to have them website-specific). Updated test site to force handler execution in order to avoid being in undefined state.
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 376 377 378 379 380 381 382 383 | #!/usr/bin/env python
DOCUMENTATION = """
---
module: ldap_entry
short_description: Creates, updates, or removes an LDAP entry.
description:
- Creates, updates, or removes an LDAP entry in an LDAP directory.
version_added: 1.8.2
author: Branko Majic
notes:
- Requires the python-ldap Python package on remote host. For Debian and
derivatives, this is as easy as apt-get install python-ldap.
requirements:
- python-ldap
options:
dn:
description:
- Distinguished name of the entry.
required: true
default: ""
state:
description:
- LDAP entry state. State C(present) requires that all entry attributes
are listed. If you wish to add some attributes, with specific values, to
existing entry, use state C(addattributes). If you wish to replace
existing values for an attribute, use C(replaceattributes).
required: true
default: "present"
choices: [ "present", "absent", "addattributes", "replaceattributes" ]
server_uri:
description:
- LDAP connection URI specifying what server to connect to.
required: false
default: "ldapi:///"
bind_dn:
description:
- DN for binding to the LDAP server using simple bind. If not set,
EXTERNAL SASL binding method will be used.
required: false
default: ""
bind_password:
description:
- Password for binding to the LDAP server using simple bind.
required: false
default: ""
ATTRIBUTES:
description:
- All remaining attributes are considered to be attributes for an LDAP
entry. LDAP schema constraints should be kept in mind (i.e. one
structural objectClass etc). Attributes can be passed in as a simple
string (for one value of an attribute), for storing multiple values for
same attribute. If providing a base64-encoded value, prefix it with
C(base64:) (this is useful for I(usercertificate;binary) or
I(displayName) attributes). In order to remove an attribute, set its
value to an empty string (C("")), and set the state to
C(replaceattributes).
required: false
default: ""
"""
EXAMPLES = """
# Create sub-trees for storing user and group information.
ldap_entry: dn=ou=people,dc=example,dc=com objectClass=organizationalUnit ou=people
ldap_entry: dn=ou=groups,dc=example,dc=com objectClass=organizationalUnit ou=groups
# Remove old entries, using simple bind authentication.
ldap_entry: dn=ou=accounting,dc=example,dc=com state=absent bind_dn=cn=admin,dc=example,dc=com bind_password=foo123
# Create a complex entry that has multiple values for single attribute.
ldap_entry:
dn: uid=john,ou=people,dc=example,dc=com
objectClass:
- inetOrgPerson
- simpleSecurityObject
uid: john
cn: John Doe
sn: Doe
givenName: John
displayName: base64:Sm9obiBEb2U=
initials: JD
mail: john.doe@example.com
mobile: +1 11 111 111 11
usercertificate;binary: base64:MIIC...lotsofcharacters...+/A==
# Add attribute to an entry.
ldap_entry:
dn: uid=john,ou=people,dc=example,dc=com
state: addattributes
mail: john.doe@example.com
# Make sure the configuration database has specific logging level enabled.
ldap_entry:
dn: cn=config
state: replaceattributes
olcLogLevel: 256
# Remove attribute from an entry.
ldap_entry:
dn: uid=john,ou=people,dc=example,dc=com
state: replaceattributes
uid: ""
"""
# Try to load the Python LDAP module.
try:
import ldap
import ldap.sasl
import ldap.modlist
except ImportError:
ldap_found = False
else:
ldap_found = True
from copy import deepcopy
def get_ldap_connection(uri, bind_dn=None, bind_password=""):
"""
Connects and binds to an LDAP server.
Arguments:
uri
LDAP connection URI specifying what server to connect to, including the
protocol.
bind_dn
Distinguished name to be used for simple bind. If not set, SASL EXTERNAL
mechanism will be used for log-in. Default is None.
bind_password
Password to be used for simple bind. Needs to be set only if bind_dn is
set as well. Default is "".
Returns:
LDAP connection object.
"""
connection = ldap.initialize(uri)
if bind_dn:
connection.simple_bind_s(bind_dn, bind_password)
else:
connection.sasl_interactive_bind_s("", ldap.sasl.external())
return connection
class LDAPEntry(object):
"""
Implements a convenience wrapper for managing an LDAP entry.
"""
def __init__(self, dn, attributes, connection):
"""
Initialises class instance, setting-up the necessary properties.
Arguments:
dn
Distinguished name (DN) of an entry.
attributes
Attributes that should be set for an entry.
connection
An instance of LDAPObject class that will be used for running queries
against an LDAP server.
"""
self.connection = connection
self.dn = dn
self.attributes = attributes
def add(self):
"""
Adds entry to the LDAP directory.
Returns:
True, if entry was added, or had to be updated to match with requested
attributes. False, if no change was necessary.
"""
# If entry already exists with set attributes, only update it.
if self.exists():
return self._update()
# Otherwise we need to add a new entry.
self.connection.add_s(self.dn, ldap.modlist.addModlist(self.attributes))
return True
def delete(self):
"""
Removes entry from an LDAP directory.
Returns:
True, if entry was removed. False if no change was necessary (entry is
already not present).
"""
if self.exists():
self.connection.delete_s(self.dn)
return True
return False
def addattributes(self):
"""
Adds attributes to an existing entry.
Returns:
True, if entry was updated with new attribute values. False if no change
was necessary (values are already present).
"""
if not self.exists():
raise Exception("Module error: Can't add attributes for an entry. Entry does not exist.")
attribute_list = self.attributes.keys()
current_attributes = self.connection.search_s(self.dn, ldap.SCOPE_BASE, attrlist=attribute_list)[0][1]
# This dictionary will contain all new attributes (or attribute values)
# that should be added to the entry. We can't rely on modifyModlist
# unfortunately, since if the values already exists, it will try to
# remove and re-add them.
new_attributes = {}
# If attribute is already present, only add the difference between
# requested and current values.
for attribute, values in current_attributes.iteritems():
if attribute in self.attributes:
new_attributes[attribute] = [ item for item in self.attributes[attribute] if item not in values ]
else:
new_attributes[attribute] = values
modification_list = ldap.modlist.modifyModlist({}, new_attributes)
if not modification_list:
return False
self.connection.modify_s(self.dn, modification_list)
return True
def replaceattributes(self):
"""
Replace attributes of an existing entry.
Returns:
True, if entry was updated with new attribute values. False if no change
was necessary (values are already present).
"""
if not self.exists():
raise Exception("Module error: Can't replace attributes for an entry. Entry does not exist.")
attribute_list = self.attributes.keys()
current_attributes = self.connection.search_s(self.dn, ldap.SCOPE_BASE, attrlist=attribute_list)[0][1]
modification_list = ldap.modlist.modifyModlist(current_attributes,
self.attributes, ignore_oldexistent=1)
if not modification_list:
return False
self.connection.modify_s(self.dn, modification_list)
return True
def _update(self):
"""
Updates an LDAP entry to have the requested attributes.
Returns:
True, if LDAP entry was updated. False if no change was necessary (entry
already has the correct attributes).
"""
self.current_attributes = self.connection.search_s(self.dn, ldap.SCOPE_BASE)[0][1]
modification_list = ldap.modlist.modifyModlist(self.current_attributes,
self.attributes)
if not modification_list:
return False
self.connection.modify_s(self.dn, modification_list)
return True
def exists(self):
"""
Checks if the entry already exists in LDAP directory or not.
Returns:
True, if entry exists. False otherwise.
"""
try:
self.connection.search_s(self.dn, ldap.SCOPE_BASE, attrlist=["dn"])
except ldap.NO_SUCH_OBJECT:
return False
return True
def main():
"""
Runs the module.
"""
# Construct the module helper for parsing the arguments.
module = AnsibleModule(
argument_spec=dict(
dn=dict(required=True),
state=dict(required=False, choices=["present", "absent", "addattributes", "replaceattributes"], default="present"),
server_uri=dict(required=False, default="ldapi:///"),
bind_dn=dict(required=False, default=None),
bind_password=dict(required=False)
),
check_invalid_arguments=False
)
if not ldap_found:
module.fail_json(msg="The Python LDAP module is required")
# Extract the attributes.
attributes = {}
for name, value in module.params.iteritems():
if name not in module.argument_spec:
if value == "":
pass
elif isinstance(value, basestring):
value = [ value.encode("utf-8") ]
elif isinstance(value, list):
value = [ i.encode("utf-8") for i in value ]
attributes[name] = value
try:
connection = get_ldap_connection(module.params["server_uri"],
module.params["bind_dn"],
module.params["bind_password"])
except ldap.LDAPError as e:
module.fail_json(msg="LDAP error: %s" % str(e))
state = module.params["state"]
entry = LDAPEntry(module.params["dn"],
attributes,
connection)
# Add/remove entry as requested.
try:
if state == "present":
changed = entry.add()
elif state == "addattributes":
changed = entry.addattributes()
elif state == "replaceattributes":
changed = entry.replaceattributes()
else:
changed = entry.remove()
except ldap.LDAPError as e:
module.fail_json(msg="LDAP error: %s" % str(e))
module.exit_json(changed=changed)
# Import module snippets.
from ansible.module_utils.basic import *
main()
|