2009-06-24 08:09:26 -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
|
|
|
|
#
|
2010-12-09 06:59:11 -06:00
|
|
|
# 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, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
2009-06-24 08:09:26 -05:00
|
|
|
#
|
|
|
|
# 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
|
2010-12-09 06:59:11 -06:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2011-08-24 21:48:30 -05:00
|
|
|
|
2013-01-31 08:02:01 -06:00
|
|
|
import os
|
|
|
|
|
2011-08-24 21:48:30 -05:00
|
|
|
from ipalib import api, errors
|
|
|
|
from ipalib import Object, Command
|
|
|
|
from ipalib import Flag, Str, IA5Str
|
|
|
|
from ipalib.plugins.baseldap import *
|
|
|
|
from ipalib import _, ngettext
|
|
|
|
|
|
|
|
__doc__ = _("""
|
2009-06-24 08:09:26 -05:00
|
|
|
Automount
|
|
|
|
|
2010-09-24 14:17:14 -05:00
|
|
|
Stores automount(8) configuration for autofs(8) in IPA.
|
|
|
|
|
|
|
|
The base of an automount configuration is the configuration file auto.master.
|
|
|
|
This is also the base location in IPA. Multiple auto.master configurations
|
|
|
|
can be stored in separate locations. A location is implementation-specific
|
|
|
|
with the default being a location named 'default'. For example, you can have
|
|
|
|
locations by geographic region, by floor, by type, etc.
|
|
|
|
|
|
|
|
Automount has three basic object types: locations, maps and keys.
|
|
|
|
|
|
|
|
A location defines a set of maps anchored in auto.master. This allows you
|
|
|
|
to store multiple automount configurations. A location in itself isn't
|
|
|
|
very interesting, it is just a point to start a new automount map.
|
|
|
|
|
2011-03-04 10:08:54 -06:00
|
|
|
A map is roughly equivalent to a discrete automount file and provides
|
|
|
|
storage for keys.
|
2010-09-24 14:17:14 -05:00
|
|
|
|
2011-03-04 10:08:54 -06:00
|
|
|
A key is a mount point associated with a map.
|
2010-09-24 14:17:14 -05:00
|
|
|
|
2011-03-04 10:08:54 -06:00
|
|
|
When a new location is created, two maps are automatically created for
|
2010-09-24 14:17:14 -05:00
|
|
|
it: auto.master and auto.direct. auto.master is the root map for all
|
|
|
|
automount maps for the location. auto.direct is the default map for
|
|
|
|
direct mounts and is mounted on /-.
|
|
|
|
|
2012-01-19 15:15:50 -06:00
|
|
|
An automount map may contain a submount key. This key defines a mount
|
|
|
|
location within the map that references another map. This can be done
|
|
|
|
either using automountmap-add-indirect --parentmap or manually
|
|
|
|
with automountkey-add and setting info to "-type=autofs :<mapname>".
|
|
|
|
|
2010-09-24 14:17:14 -05:00
|
|
|
EXAMPLES:
|
|
|
|
|
|
|
|
Locations:
|
|
|
|
|
|
|
|
Create a named location, "Baltimore":
|
|
|
|
ipa automountlocation-add baltimore
|
|
|
|
|
2011-03-04 10:08:54 -06:00
|
|
|
Display the new location:
|
2010-09-24 14:17:14 -05:00
|
|
|
ipa automountlocation-show baltimore
|
|
|
|
|
|
|
|
Find available locations:
|
|
|
|
ipa automountlocation-find
|
|
|
|
|
|
|
|
Remove a named automount location:
|
|
|
|
ipa automountlocation-del baltimore
|
|
|
|
|
|
|
|
Show what the automount maps would look like if they were in the filesystem:
|
|
|
|
ipa automountlocation-tofiles baltimore
|
|
|
|
|
|
|
|
Import an existing configuration into a location:
|
|
|
|
ipa automountlocation-import baltimore /etc/auto.master
|
|
|
|
|
|
|
|
The import will fail if any duplicate entries are found. For
|
2011-03-04 10:08:54 -06:00
|
|
|
continuous operation where errors are ignored, use the --continue
|
2010-09-24 14:17:14 -05:00
|
|
|
option.
|
|
|
|
|
|
|
|
Maps:
|
|
|
|
|
|
|
|
Create a new map, "auto.share":
|
|
|
|
ipa automountmap-add baltimore auto.share
|
|
|
|
|
|
|
|
Display the new map:
|
|
|
|
ipa automountmap-show baltimore auto.share
|
|
|
|
|
|
|
|
Find maps in the location baltimore:
|
|
|
|
ipa automountmap-find baltimore
|
|
|
|
|
2012-01-19 15:15:50 -06:00
|
|
|
Create an indirect map with auto.share as a submount:
|
|
|
|
ipa automountmap-add-indirect baltimore --parentmap=auto.share --mount=sub auto.man
|
|
|
|
|
|
|
|
This is equivalent to:
|
|
|
|
|
|
|
|
ipa automountmap-add-indirect baltimore --mount=/man auto.man
|
|
|
|
ipa automountkey-add baltimore auto.man --key=sub --info="-fstype=autofs ldap:auto.share"
|
|
|
|
|
2010-09-24 14:17:14 -05:00
|
|
|
Remove the auto.share map:
|
|
|
|
ipa automountmap-del baltimore auto.share
|
|
|
|
|
|
|
|
Keys:
|
|
|
|
|
|
|
|
Create a new key for the auto.share map in location baltimore. This ties
|
|
|
|
the map we previously created to auto.master:
|
2010-12-19 13:23:16 -06:00
|
|
|
ipa automountkey-add baltimore auto.master --key=/share --info=auto.share
|
2010-09-24 14:17:14 -05:00
|
|
|
|
|
|
|
Create a new key for our auto.share map, an NFS mount for man pages:
|
2010-12-19 13:23:16 -06:00
|
|
|
ipa automountkey-add baltimore auto.share --key=man --info="-ro,soft,rsize=8192,wsize=8192 ipa.example.com:/shared/man"
|
2010-09-24 14:17:14 -05:00
|
|
|
|
|
|
|
Find all keys for the auto.share map:
|
|
|
|
ipa automountkey-find baltimore auto.share
|
|
|
|
|
2010-12-19 13:23:16 -06:00
|
|
|
Find all direct automount keys:
|
|
|
|
ipa automountkey-find baltimore --key=/-
|
|
|
|
|
2010-09-24 14:17:14 -05:00
|
|
|
Remove the man key from the auto.share map:
|
2010-12-19 13:23:16 -06:00
|
|
|
ipa automountkey-del baltimore auto.share --key=man
|
2011-08-24 21:48:30 -05:00
|
|
|
""")
|
2010-09-24 14:17:14 -05:00
|
|
|
|
|
|
|
"""
|
|
|
|
Developer notes:
|
|
|
|
|
2009-06-24 08:09:26 -05:00
|
|
|
RFC 2707bis http://www.padl.com/~lukeh/rfc2307bis.txt
|
|
|
|
|
|
|
|
A few notes on automount:
|
|
|
|
- The default parent when adding an indirect map is auto.master
|
|
|
|
- This uses the short format for automount maps instead of the
|
|
|
|
URL format. Support for ldap as a map source in nsswitch.conf was added
|
|
|
|
in autofs version 4.1.3-197. Any version prior to that is not expected
|
|
|
|
to work.
|
2012-01-19 15:15:50 -06:00
|
|
|
- An indirect key should not begin with /
|
2009-06-24 08:09:26 -05:00
|
|
|
|
|
|
|
As an example, the following automount files:
|
|
|
|
|
|
|
|
auto.master:
|
|
|
|
/- auto.direct
|
|
|
|
/mnt auto.mnt
|
|
|
|
|
|
|
|
auto.mnt:
|
|
|
|
stuff -ro,soft,rsize=8192,wsize=8192 nfs.example.com:/vol/archive/stuff
|
|
|
|
|
|
|
|
are equivalent to the following LDAP entries:
|
|
|
|
|
|
|
|
# auto.master, automount, example.com
|
|
|
|
dn: automountmapname=auto.master,cn=automount,dc=example,dc=com
|
|
|
|
objectClass: automountMap
|
|
|
|
objectClass: top
|
|
|
|
automountMapName: auto.master
|
|
|
|
|
|
|
|
# auto.direct, automount, example.com
|
|
|
|
dn: automountmapname=auto.direct,cn=automount,dc=example,dc=com
|
|
|
|
objectClass: automountMap
|
|
|
|
objectClass: top
|
|
|
|
automountMapName: auto.direct
|
|
|
|
|
|
|
|
# /-, auto.master, automount, example.com
|
|
|
|
dn: automountkey=/-,automountmapname=auto.master,cn=automount,dc=example,dc=co
|
|
|
|
m
|
|
|
|
objectClass: automount
|
|
|
|
objectClass: top
|
|
|
|
automountKey: /-
|
|
|
|
automountInformation: auto.direct
|
|
|
|
|
|
|
|
# auto.mnt, automount, example.com
|
|
|
|
dn: automountmapname=auto.mnt,cn=automount,dc=example,dc=com
|
|
|
|
objectClass: automountMap
|
|
|
|
objectClass: top
|
|
|
|
automountMapName: auto.mnt
|
|
|
|
|
|
|
|
# /mnt, auto.master, automount, example.com
|
|
|
|
dn: automountkey=/mnt,automountmapname=auto.master,cn=automount,dc=example,dc=
|
|
|
|
com
|
|
|
|
objectClass: automount
|
|
|
|
objectClass: top
|
|
|
|
automountKey: /mnt
|
|
|
|
automountInformation: auto.mnt
|
|
|
|
|
|
|
|
# stuff, auto.mnt, automount, example.com
|
|
|
|
dn: automountkey=stuff,automountmapname=auto.mnt,cn=automount,dc=example,dc=com
|
|
|
|
objectClass: automount
|
|
|
|
objectClass: top
|
|
|
|
automountKey: stuff
|
|
|
|
automountInformation: -ro,soft,rsize=8192,wsize=8192 nfs.example.com:/vol/arch
|
|
|
|
ive/stuff
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2011-08-01 09:41:28 -05:00
|
|
|
DIRECT_MAP_KEY = u'/-'
|
2011-08-16 09:20:09 -05:00
|
|
|
DEFAULT_MAPS = (u'auto.direct', )
|
|
|
|
DEFAULT_KEYS = (u'/-', )
|
2009-06-24 08:09:26 -05:00
|
|
|
|
2009-08-25 07:34:42 -05:00
|
|
|
class automountlocation(LDAPObject):
|
|
|
|
"""
|
|
|
|
Location container for automount maps.
|
|
|
|
"""
|
|
|
|
container_dn = api.env.container_automount
|
2011-07-12 11:01:25 -05:00
|
|
|
object_name = _('automount location')
|
|
|
|
object_name_plural = _('automount locations')
|
2009-08-25 07:34:42 -05:00
|
|
|
object_class = ['nscontainer']
|
|
|
|
default_attributes = ['cn']
|
2011-05-06 16:04:09 -05:00
|
|
|
label = _('Automount Locations')
|
2011-07-13 21:10:47 -05:00
|
|
|
label_singular = _('Automount Location')
|
2009-08-25 07:34:42 -05:00
|
|
|
|
|
|
|
takes_params = (
|
|
|
|
Str('cn',
|
|
|
|
cli_name='location',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Location'),
|
2011-03-04 10:08:54 -06:00
|
|
|
doc=_('Automount location name.'),
|
2009-08-25 07:34:42 -05:00
|
|
|
primary_key=True,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
api.register(automountlocation)
|
|
|
|
|
|
|
|
|
|
|
|
class automountlocation_add(LDAPCreate):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Create a new automount location.')
|
2011-07-21 09:49:35 -05:00
|
|
|
|
|
|
|
msg_summary = _('Added automount location "%(value)s"')
|
|
|
|
|
2009-08-27 08:46:20 -05:00
|
|
|
def post_callback(self, ldap, dn, entry_attrs, *keys, **options):
|
Use DN objects instead of strings
* Convert every string specifying a DN into a DN object
* Every place a dn was manipulated in some fashion it was replaced by
the use of DN operators
* Add new DNParam parameter type for parameters which are DN's
* DN objects are used 100% of the time throughout the entire data
pipeline whenever something is logically a dn.
* Many classes now enforce DN usage for their attributes which are
dn's. This is implmented via ipautil.dn_attribute_property(). The
only permitted types for a class attribute specified to be a DN are
either None or a DN object.
* Require that every place a dn is used it must be a DN object.
This translates into lot of::
assert isinstance(dn, DN)
sprinkled through out the code. Maintaining these asserts is
valuable to preserve DN type enforcement. The asserts can be
disabled in production.
The goal of 100% DN usage 100% of the time has been realized, these
asserts are meant to preserve that.
The asserts also proved valuable in detecting functions which did
not obey their function signatures, such as the baseldap pre and
post callbacks.
* Moved ipalib.dn to ipapython.dn because DN class is shared with all
components, not just the server which uses ipalib.
* All API's now accept DN's natively, no need to convert to str (or
unicode).
* Removed ipalib.encoder and encode/decode decorators. Type conversion
is now explicitly performed in each IPASimpleLDAPObject method which
emulates a ldap.SimpleLDAPObject method.
* Entity & Entry classes now utilize DN's
* Removed __getattr__ in Entity & Entity clases. There were two
problems with it. It presented synthetic Python object attributes
based on the current LDAP data it contained. There is no way to
validate synthetic attributes using code checkers, you can't search
the code to find LDAP attribute accesses (because synthetic
attriutes look like Python attributes instead of LDAP data) and
error handling is circumscribed. Secondly __getattr__ was hiding
Python internal methods which broke class semantics.
* Replace use of methods inherited from ldap.SimpleLDAPObject via
IPAdmin class with IPAdmin methods. Directly using inherited methods
was causing us to bypass IPA logic. Mostly this meant replacing the
use of search_s() with getEntry() or getList(). Similarly direct
access of the LDAP data in classes using IPAdmin were replaced with
calls to getValue() or getValues().
* Objects returned by ldap2.find_entries() are now compatible with
either the python-ldap access methodology or the Entity/Entry access
methodology.
* All ldap operations now funnel through the common
IPASimpleLDAPObject giving us a single location where we interface
to python-ldap and perform conversions.
* The above 4 modifications means we've greatly reduced the
proliferation of multiple inconsistent ways to perform LDAP
operations. We are well on the way to having a single API in IPA for
doing LDAP (a long range goal).
* All certificate subject bases are now DN's
* DN objects were enhanced thusly:
- find, rfind, index, rindex, replace and insert methods were added
- AVA, RDN and DN classes were refactored in immutable and mutable
variants, the mutable variants are EditableAVA, EditableRDN and
EditableDN. By default we use the immutable variants preserving
important semantics. To edit a DN cast it to an EditableDN and
cast it back to DN when done editing. These issues are fully
described in other documentation.
- first_key_match was removed
- DN equalty comparison permits comparison to a basestring
* Fixed ldapupdate to work with DN's. This work included:
- Enhance test_updates.py to do more checking after applying
update. Add test for update_from_dict(). Convert code to use
unittest classes.
- Consolidated duplicate code.
- Moved code which should have been in the class into the class.
- Fix the handling of the 'deleteentry' update action. It's no longer
necessary to supply fake attributes to make it work. Detect case
where subsequent update applies a change to entry previously marked
for deletetion. General clean-up and simplification of the
'deleteentry' logic.
- Rewrote a couple of functions to be clearer and more Pythonic.
- Added documentation on the data structure being used.
- Simplfy the use of update_from_dict()
* Removed all usage of get_schema() which was being called prior to
accessing the .schema attribute of an object. If a class is using
internal lazy loading as an optimization it's not right to require
users of the interface to be aware of internal
optimization's. schema is now a property and when the schema
property is accessed it calls a private internal method to perform
the lazy loading.
* Added SchemaCache class to cache the schema's from individual
servers. This was done because of the observation we talk to
different LDAP servers, each of which may have it's own
schema. Previously we globally cached the schema from the first
server we connected to and returned that schema in all contexts. The
cache includes controls to invalidate it thus forcing a schema
refresh.
* Schema caching is now senstive to the run time context. During
install and upgrade the schema can change leading to errors due to
out-of-date cached schema. The schema cache is refreshed in these
contexts.
* We are aware of the LDAP syntax of all LDAP attributes. Every
attribute returned from an LDAP operation is passed through a
central table look-up based on it's LDAP syntax. The table key is
the LDAP syntax it's value is a Python callable that returns a
Python object matching the LDAP syntax. There are a handful of LDAP
attributes whose syntax is historically incorrect
(e.g. DistguishedNames that are defined as DirectoryStrings). The
table driven conversion mechanism is augmented with a table of
hard coded exceptions.
Currently only the following conversions occur via the table:
- dn's are converted to DN objects
- binary objects are converted to Python str objects (IPA
convention).
- everything else is converted to unicode using UTF-8 decoding (IPA
convention).
However, now that the table driven conversion mechanism is in place
it would be trivial to do things such as converting attributes
which have LDAP integer syntax into a Python integer, etc.
* Expected values in the unit tests which are a DN no longer need to
use lambda expressions to promote the returned value to a DN for
equality comparison. The return value is automatically promoted to
a DN. The lambda expressions have been removed making the code much
simpler and easier to read.
* Add class level logging to a number of classes which did not support
logging, less need for use of root_logger.
* Remove ipaserver/conn.py, it was unused.
* Consolidated duplicate code wherever it was found.
* Fixed many places that used string concatenation to form a new
string rather than string formatting operators. This is necessary
because string formatting converts it's arguments to a string prior
to building the result string. You can't concatenate a string and a
non-string.
* Simplify logic in rename_managed plugin. Use DN operators to edit
dn's.
* The live version of ipa-ldap-updater did not generate a log file.
The offline version did, now both do.
https://fedorahosted.org/freeipa/ticket/1670
https://fedorahosted.org/freeipa/ticket/1671
https://fedorahosted.org/freeipa/ticket/1672
https://fedorahosted.org/freeipa/ticket/1673
https://fedorahosted.org/freeipa/ticket/1674
https://fedorahosted.org/freeipa/ticket/1392
https://fedorahosted.org/freeipa/ticket/2872
2012-05-13 06:36:35 -05:00
|
|
|
assert isinstance(dn, DN)
|
2009-08-27 08:46:20 -05:00
|
|
|
# create auto.master for the new location
|
|
|
|
self.api.Command['automountmap_add'](keys[-1], u'auto.master')
|
2011-08-16 09:20:09 -05:00
|
|
|
|
|
|
|
# add additional pre-created maps and keys
|
|
|
|
# IMPORTANT: add pre-created maps/keys to DEFAULT_MAPS/DEFAULT_KEYS
|
|
|
|
# so that they do not cause conflicts during import operation
|
2010-02-12 06:33:25 -06:00
|
|
|
self.api.Command['automountmap_add_indirect'](
|
2011-08-01 09:41:28 -05:00
|
|
|
keys[-1], u'auto.direct', key=DIRECT_MAP_KEY
|
2010-02-12 06:33:25 -06:00
|
|
|
)
|
2009-08-27 08:46:20 -05:00
|
|
|
return dn
|
2009-08-25 07:34:42 -05:00
|
|
|
|
2011-07-21 09:49:35 -05:00
|
|
|
|
2009-08-25 07:34:42 -05:00
|
|
|
api.register(automountlocation_add)
|
|
|
|
|
|
|
|
|
|
|
|
class automountlocation_del(LDAPDelete):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Delete an automount location.')
|
2009-08-25 07:34:42 -05:00
|
|
|
|
2011-07-21 09:49:35 -05:00
|
|
|
msg_summary = _('Deleted automount location "%(value)s"')
|
|
|
|
|
2009-08-25 07:34:42 -05:00
|
|
|
api.register(automountlocation_del)
|
|
|
|
|
|
|
|
|
2009-08-27 08:46:20 -05:00
|
|
|
class automountlocation_show(LDAPRetrieve):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Display an automount location.')
|
2009-08-27 08:46:20 -05:00
|
|
|
|
|
|
|
api.register(automountlocation_show)
|
|
|
|
|
|
|
|
|
2009-08-25 07:34:42 -05:00
|
|
|
class automountlocation_find(LDAPSearch):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Search for an automount location.')
|
2009-08-25 07:34:42 -05:00
|
|
|
|
2011-07-21 09:49:35 -05:00
|
|
|
msg_summary = ngettext(
|
|
|
|
'%(count)d automount location matched',
|
|
|
|
'%(count)d automount locations matched', 0
|
|
|
|
)
|
|
|
|
|
2009-08-25 07:34:42 -05:00
|
|
|
api.register(automountlocation_find)
|
|
|
|
|
|
|
|
|
|
|
|
class automountlocation_tofiles(LDAPQuery):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Generate automount files for a specific location.')
|
|
|
|
|
2009-08-25 07:34:42 -05:00
|
|
|
def execute(self, *args, **options):
|
|
|
|
ldap = self.obj.backend
|
|
|
|
|
2010-09-24 14:17:14 -05:00
|
|
|
location = self.api.Command['automountlocation_show'](args[0])
|
|
|
|
|
2009-08-25 07:34:42 -05:00
|
|
|
maps = []
|
2010-12-07 07:02:42 -06:00
|
|
|
result = self.api.Command['automountkey_find'](args[0], u'auto.master')
|
2010-02-12 15:27:52 -06:00
|
|
|
truncated = result['truncated']
|
|
|
|
maps = result['result']
|
|
|
|
|
|
|
|
# maps, truncated
|
2009-08-25 07:34:42 -05:00
|
|
|
# TODO: handle truncated results
|
|
|
|
# ?use ldap.find_entries instead of automountkey_find?
|
|
|
|
|
|
|
|
keys = {}
|
2012-01-19 15:15:50 -06:00
|
|
|
mapnames = [u'auto.master']
|
2010-02-12 15:27:52 -06:00
|
|
|
for m in maps:
|
2009-08-25 07:34:42 -05:00
|
|
|
info = m['automountinformation'][0]
|
2012-01-19 15:15:50 -06:00
|
|
|
mapnames.append(info)
|
2010-09-24 14:17:14 -05:00
|
|
|
key = info.split(None)
|
2010-12-07 07:02:42 -06:00
|
|
|
result = self.api.Command['automountkey_find'](args[0], key[0])
|
2010-02-12 15:27:52 -06:00
|
|
|
truncated = result['truncated']
|
|
|
|
keys[info] = result['result']
|
2009-08-25 07:34:42 -05:00
|
|
|
# TODO: handle truncated results, same as above
|
|
|
|
|
2012-01-19 15:15:50 -06:00
|
|
|
allmaps = self.api.Command['automountmap_find'](args[0])['result']
|
|
|
|
orphanmaps = []
|
|
|
|
for m in allmaps:
|
|
|
|
if m['automountmapname'][0] not in mapnames:
|
|
|
|
orphanmaps.append(m)
|
|
|
|
|
|
|
|
orphankeys = []
|
|
|
|
# Collect all the keys for the orphaned maps
|
|
|
|
for m in orphanmaps:
|
|
|
|
key = m['automountmapname']
|
|
|
|
result = self.api.Command['automountkey_find'](args[0], key[0])
|
|
|
|
truncated = result['truncated']
|
|
|
|
orphankeys.append(result['result'])
|
|
|
|
|
|
|
|
return dict(result=dict(maps=maps, keys=keys,
|
|
|
|
orphanmaps=orphanmaps, orphankeys=orphankeys))
|
2009-08-25 07:34:42 -05:00
|
|
|
|
|
|
|
def output_for_cli(self, textui, result, *keys, **options):
|
2010-02-12 15:27:52 -06:00
|
|
|
maps = result['result']['maps']
|
|
|
|
keys = result['result']['keys']
|
2012-01-19 15:15:50 -06:00
|
|
|
orphanmaps = result['result']['orphanmaps']
|
|
|
|
orphankeys = result['result']['orphankeys']
|
2009-08-25 07:34:42 -05:00
|
|
|
|
|
|
|
textui.print_plain('/etc/auto.master:')
|
2010-02-12 15:27:52 -06:00
|
|
|
for m in maps:
|
2010-09-24 14:17:14 -05:00
|
|
|
if m['automountinformation'][0].startswith('-'):
|
|
|
|
textui.print_plain(
|
|
|
|
'%s\t%s' % (
|
|
|
|
m['automountkey'][0], m['automountinformation'][0]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
textui.print_plain(
|
|
|
|
'%s\t/etc/%s' % (
|
|
|
|
m['automountkey'][0], m['automountinformation'][0]
|
|
|
|
)
|
2009-08-25 07:34:42 -05:00
|
|
|
)
|
2010-02-12 15:27:52 -06:00
|
|
|
for m in maps:
|
2010-09-24 14:17:14 -05:00
|
|
|
if m['automountinformation'][0].startswith('-'):
|
|
|
|
continue
|
2009-08-25 07:34:42 -05:00
|
|
|
info = m['automountinformation'][0]
|
|
|
|
textui.print_plain('---------------------------')
|
|
|
|
textui.print_plain('/etc/%s:' % info)
|
2010-02-12 15:27:52 -06:00
|
|
|
for k in keys[info]:
|
2009-08-25 07:34:42 -05:00
|
|
|
textui.print_plain(
|
|
|
|
'%s\t%s' % (
|
|
|
|
k['automountkey'][0], k['automountinformation'][0]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2012-01-19 15:15:50 -06:00
|
|
|
textui.print_plain('')
|
|
|
|
textui.print_plain(_('maps not connected to /etc/auto.master:'))
|
|
|
|
for m in orphanmaps:
|
|
|
|
textui.print_plain('---------------------------')
|
2012-05-25 09:53:23 -05:00
|
|
|
textui.print_plain('/etc/%s:' % m['automountmapname'])
|
2012-01-19 15:15:50 -06:00
|
|
|
for k in orphankeys:
|
|
|
|
if len(k) == 0: continue
|
|
|
|
dn = DN(k[0]['dn'])
|
|
|
|
if dn['automountmapname'] == m['automountmapname'][0]:
|
|
|
|
textui.print_plain(
|
|
|
|
'%s\t%s' % (
|
|
|
|
k[0]['automountkey'][0], k[0]['automountinformation'][0]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2009-08-25 07:34:42 -05:00
|
|
|
api.register(automountlocation_tofiles)
|
2009-06-24 08:09:26 -05:00
|
|
|
|
|
|
|
|
2010-09-24 14:17:14 -05:00
|
|
|
class automountlocation_import(LDAPQuery):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Import automount files for a specific location.')
|
2010-09-24 14:17:14 -05:00
|
|
|
|
|
|
|
takes_args = (
|
|
|
|
Str('masterfile',
|
|
|
|
label=_('Master file'),
|
2011-03-04 10:08:54 -06:00
|
|
|
doc=_('Automount master file.'),
|
2010-09-24 14:17:14 -05:00
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
takes_options = (
|
|
|
|
Flag('continue?',
|
|
|
|
cli_name='continue',
|
2011-03-04 10:08:54 -06:00
|
|
|
doc=_('Continuous operation mode. Errors are reported but the process continues.'),
|
2010-09-24 14:17:14 -05:00
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
def __read_mapfile(self, filename):
|
|
|
|
try:
|
|
|
|
fp = open(filename, 'r')
|
|
|
|
map = fp.readlines()
|
|
|
|
fp.close()
|
|
|
|
except IOError, e:
|
|
|
|
if e.errno == 2:
|
2011-02-23 15:47:49 -06:00
|
|
|
raise errors.NotFound(
|
|
|
|
reason=_('File %(file)s not found') % {'file': filename}
|
|
|
|
)
|
2010-09-24 14:17:14 -05:00
|
|
|
else:
|
2012-05-25 09:53:23 -05:00
|
|
|
raise
|
2010-09-24 14:17:14 -05:00
|
|
|
return map
|
|
|
|
|
|
|
|
def forward(self, *args, **options):
|
|
|
|
"""
|
|
|
|
The basic idea is to read the master file and create all the maps
|
|
|
|
we need, then read each map file and add all the keys for the map.
|
|
|
|
"""
|
|
|
|
location = self.api.Command['automountlocation_show'](args[0])
|
|
|
|
|
|
|
|
result = {'maps':[], 'keys':[], 'skipped':[], 'duplicatekeys':[], 'duplicatemaps':[]}
|
|
|
|
maps = {}
|
|
|
|
master = self.__read_mapfile(args[1])
|
|
|
|
for m in master:
|
|
|
|
if m.startswith('#'):
|
|
|
|
continue
|
|
|
|
m = m.rstrip()
|
|
|
|
if m.startswith('+'):
|
|
|
|
result['skipped'].append([m,args[1]])
|
|
|
|
continue
|
|
|
|
if len(m) == 0:
|
|
|
|
continue
|
|
|
|
am = m.split(None)
|
2010-12-08 12:58:16 -06:00
|
|
|
if len(am) < 2:
|
|
|
|
continue
|
|
|
|
|
2010-09-24 14:17:14 -05:00
|
|
|
if am[1].startswith('/'):
|
|
|
|
mapfile = am[1].replace('"','')
|
|
|
|
am[1] = os.path.basename(am[1])
|
|
|
|
maps[am[1]] = mapfile
|
|
|
|
info = ' '.join(am[1:])
|
|
|
|
|
|
|
|
# Add a new key to the auto.master map for the new map file
|
|
|
|
try:
|
2010-12-19 13:23:16 -06:00
|
|
|
api.Command['automountkey_add'](
|
|
|
|
args[0],
|
|
|
|
u'auto.master',
|
|
|
|
automountkey=unicode(am[0]),
|
|
|
|
automountinformation=unicode(' '.join(am[1:])))
|
2010-09-24 14:17:14 -05:00
|
|
|
result['keys'].append([am[0], u'auto.master'])
|
|
|
|
except errors.DuplicateEntry, e:
|
2011-08-16 09:20:09 -05:00
|
|
|
if unicode(am[0]) in DEFAULT_KEYS:
|
|
|
|
# ignore conflict when the key was pre-created by the framework
|
|
|
|
pass
|
|
|
|
elif options.get('continue', False):
|
2010-09-24 14:17:14 -05:00
|
|
|
result['duplicatekeys'].append(am[0])
|
|
|
|
pass
|
|
|
|
else:
|
2012-07-04 07:52:47 -05:00
|
|
|
raise errors.DuplicateEntry(
|
|
|
|
message=_('key %(key)s already exists') % dict(
|
|
|
|
key=am[0]))
|
2010-09-24 14:17:14 -05:00
|
|
|
# Add the new map
|
|
|
|
if not am[1].startswith('-'):
|
|
|
|
try:
|
2010-12-07 07:02:42 -06:00
|
|
|
api.Command['automountmap_add'](args[0], unicode(am[1]))
|
2010-09-24 14:17:14 -05:00
|
|
|
result['maps'].append(am[1])
|
|
|
|
except errors.DuplicateEntry, e:
|
2011-08-16 09:20:09 -05:00
|
|
|
if unicode(am[1]) in DEFAULT_MAPS:
|
|
|
|
# ignore conflict when the map was pre-created by the framework
|
|
|
|
pass
|
|
|
|
elif options.get('continue', False):
|
2010-09-24 14:17:14 -05:00
|
|
|
result['duplicatemaps'].append(am[0])
|
|
|
|
pass
|
|
|
|
else:
|
2012-07-04 07:52:47 -05:00
|
|
|
raise errors.DuplicateEntry(
|
|
|
|
message=_('map %(map)s already exists') % dict(
|
|
|
|
map=am[1]))
|
2010-09-24 14:17:14 -05:00
|
|
|
except errors.DuplicateEntry:
|
|
|
|
# This means the same map is used on several mount points.
|
|
|
|
pass
|
|
|
|
|
|
|
|
# Now iterate over the map files and add the keys. To handle
|
|
|
|
# continuation lines I'll make a pass through it to skip comments
|
|
|
|
# etc and also to combine lines.
|
|
|
|
for m in maps:
|
|
|
|
map = self.__read_mapfile(maps[m])
|
|
|
|
lines = []
|
|
|
|
cont = ''
|
|
|
|
for x in map:
|
|
|
|
if x.startswith('#'):
|
|
|
|
continue
|
|
|
|
x = x.rstrip()
|
|
|
|
if x.startswith('+'):
|
|
|
|
result['skipped'].append([m, maps[m]])
|
|
|
|
continue
|
|
|
|
if len(x) == 0:
|
|
|
|
continue
|
|
|
|
if x.endswith("\\"):
|
|
|
|
cont = cont + x[:-1] + ' '
|
|
|
|
else:
|
|
|
|
lines.append(cont + x)
|
|
|
|
cont=''
|
|
|
|
for x in lines:
|
|
|
|
am = x.split(None)
|
|
|
|
key = unicode(am[0].replace('"',''))
|
|
|
|
try:
|
2010-12-19 13:23:16 -06:00
|
|
|
api.Command['automountkey_add'](
|
|
|
|
args[0],
|
|
|
|
unicode(m),
|
|
|
|
automountkey=key,
|
|
|
|
automountinformation=unicode(' '.join(am[1:])))
|
2010-09-24 14:17:14 -05:00
|
|
|
result['keys'].append([key,m])
|
|
|
|
except errors.DuplicateEntry, e:
|
|
|
|
if options.get('continue', False):
|
|
|
|
result['duplicatekeys'].append(am[0])
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
raise e
|
|
|
|
|
|
|
|
return dict(result=result)
|
|
|
|
|
|
|
|
def output_for_cli(self, textui, result, *keys, **options):
|
|
|
|
maps = result['result']['maps']
|
|
|
|
keys = result['result']['keys']
|
|
|
|
duplicatemaps = result['result']['duplicatemaps']
|
|
|
|
duplicatekeys = result['result']['duplicatekeys']
|
|
|
|
skipped = result['result']['skipped']
|
|
|
|
|
|
|
|
textui.print_plain('Imported maps:')
|
|
|
|
for m in maps:
|
|
|
|
textui.print_plain(
|
|
|
|
'Added %s' % m
|
|
|
|
)
|
|
|
|
textui.print_plain('')
|
|
|
|
|
|
|
|
textui.print_plain('Imported keys:')
|
|
|
|
for k in keys:
|
|
|
|
textui.print_plain(
|
|
|
|
'Added %s to %s' % (
|
|
|
|
k[0], k[1]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
textui.print_plain('')
|
|
|
|
|
2010-12-07 07:02:42 -06:00
|
|
|
if len(skipped) > 0:
|
|
|
|
textui.print_plain('Ignored keys:')
|
|
|
|
for k in skipped:
|
|
|
|
textui.print_plain(
|
|
|
|
'Ignored %s to %s' % (
|
|
|
|
k[0], k[1]
|
|
|
|
)
|
2010-09-24 14:17:14 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
if options.get('continue', False) and len(duplicatemaps) > 0:
|
|
|
|
textui.print_plain('')
|
|
|
|
textui.print_plain('Duplicate maps skipped:')
|
|
|
|
for m in duplicatemaps:
|
|
|
|
textui.print_plain(
|
|
|
|
'Skipped %s' % m
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
if options.get('continue', False) and len(duplicatekeys) > 0:
|
|
|
|
textui.print_plain('')
|
|
|
|
textui.print_plain('Duplicate keys skipped:')
|
|
|
|
for k in duplicatekeys:
|
|
|
|
textui.print_plain(
|
|
|
|
'Skipped %s' % k
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
api.register(automountlocation_import)
|
|
|
|
|
2009-06-24 08:09:26 -05:00
|
|
|
class automountmap(LDAPObject):
|
|
|
|
"""
|
|
|
|
Automount map object.
|
|
|
|
"""
|
2009-08-25 07:34:42 -05:00
|
|
|
parent_object = 'automountlocation'
|
|
|
|
container_dn = api.env.container_automount
|
2011-07-12 11:01:25 -05:00
|
|
|
object_name = _('automount map')
|
|
|
|
object_name_plural = _('automount maps')
|
2009-06-24 08:09:26 -05:00
|
|
|
object_class = ['automountmap']
|
2009-08-25 07:34:42 -05:00
|
|
|
default_attributes = ['automountmapname', 'description']
|
2009-06-24 08:09:26 -05:00
|
|
|
|
|
|
|
takes_params = (
|
2010-12-06 14:09:03 -06:00
|
|
|
IA5Str('automountmapname',
|
|
|
|
cli_name='map',
|
|
|
|
label=_('Map'),
|
2011-03-04 10:08:54 -06:00
|
|
|
doc=_('Automount map name.'),
|
2010-12-06 14:09:03 -06:00
|
|
|
primary_key=True,
|
2009-06-24 08:09:26 -05:00
|
|
|
),
|
|
|
|
Str('description?',
|
|
|
|
cli_name='desc',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Description'),
|
2009-06-24 08:09:26 -05:00
|
|
|
),
|
|
|
|
)
|
|
|
|
|
2010-02-08 06:03:28 -06:00
|
|
|
label = _('Automount Maps')
|
2011-07-13 21:10:47 -05:00
|
|
|
label_singular = _('Automount Map')
|
2010-02-08 06:03:28 -06:00
|
|
|
|
2009-06-24 08:09:26 -05:00
|
|
|
api.register(automountmap)
|
|
|
|
|
|
|
|
|
|
|
|
class automountmap_add(LDAPCreate):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Create a new automount map.')
|
2009-06-24 08:09:26 -05:00
|
|
|
|
2011-07-21 09:49:35 -05:00
|
|
|
msg_summary = _('Added automount map "%(value)s"')
|
|
|
|
|
2009-06-24 08:09:26 -05:00
|
|
|
api.register(automountmap_add)
|
|
|
|
|
|
|
|
|
|
|
|
class automountmap_del(LDAPDelete):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Delete an automount map.')
|
2011-07-21 09:49:35 -05:00
|
|
|
|
|
|
|
msg_summary = _('Deleted automount map "%(value)s"')
|
|
|
|
|
2009-06-24 08:09:26 -05:00
|
|
|
def post_callback(self, ldap, dn, *keys, **options):
|
Use DN objects instead of strings
* Convert every string specifying a DN into a DN object
* Every place a dn was manipulated in some fashion it was replaced by
the use of DN operators
* Add new DNParam parameter type for parameters which are DN's
* DN objects are used 100% of the time throughout the entire data
pipeline whenever something is logically a dn.
* Many classes now enforce DN usage for their attributes which are
dn's. This is implmented via ipautil.dn_attribute_property(). The
only permitted types for a class attribute specified to be a DN are
either None or a DN object.
* Require that every place a dn is used it must be a DN object.
This translates into lot of::
assert isinstance(dn, DN)
sprinkled through out the code. Maintaining these asserts is
valuable to preserve DN type enforcement. The asserts can be
disabled in production.
The goal of 100% DN usage 100% of the time has been realized, these
asserts are meant to preserve that.
The asserts also proved valuable in detecting functions which did
not obey their function signatures, such as the baseldap pre and
post callbacks.
* Moved ipalib.dn to ipapython.dn because DN class is shared with all
components, not just the server which uses ipalib.
* All API's now accept DN's natively, no need to convert to str (or
unicode).
* Removed ipalib.encoder and encode/decode decorators. Type conversion
is now explicitly performed in each IPASimpleLDAPObject method which
emulates a ldap.SimpleLDAPObject method.
* Entity & Entry classes now utilize DN's
* Removed __getattr__ in Entity & Entity clases. There were two
problems with it. It presented synthetic Python object attributes
based on the current LDAP data it contained. There is no way to
validate synthetic attributes using code checkers, you can't search
the code to find LDAP attribute accesses (because synthetic
attriutes look like Python attributes instead of LDAP data) and
error handling is circumscribed. Secondly __getattr__ was hiding
Python internal methods which broke class semantics.
* Replace use of methods inherited from ldap.SimpleLDAPObject via
IPAdmin class with IPAdmin methods. Directly using inherited methods
was causing us to bypass IPA logic. Mostly this meant replacing the
use of search_s() with getEntry() or getList(). Similarly direct
access of the LDAP data in classes using IPAdmin were replaced with
calls to getValue() or getValues().
* Objects returned by ldap2.find_entries() are now compatible with
either the python-ldap access methodology or the Entity/Entry access
methodology.
* All ldap operations now funnel through the common
IPASimpleLDAPObject giving us a single location where we interface
to python-ldap and perform conversions.
* The above 4 modifications means we've greatly reduced the
proliferation of multiple inconsistent ways to perform LDAP
operations. We are well on the way to having a single API in IPA for
doing LDAP (a long range goal).
* All certificate subject bases are now DN's
* DN objects were enhanced thusly:
- find, rfind, index, rindex, replace and insert methods were added
- AVA, RDN and DN classes were refactored in immutable and mutable
variants, the mutable variants are EditableAVA, EditableRDN and
EditableDN. By default we use the immutable variants preserving
important semantics. To edit a DN cast it to an EditableDN and
cast it back to DN when done editing. These issues are fully
described in other documentation.
- first_key_match was removed
- DN equalty comparison permits comparison to a basestring
* Fixed ldapupdate to work with DN's. This work included:
- Enhance test_updates.py to do more checking after applying
update. Add test for update_from_dict(). Convert code to use
unittest classes.
- Consolidated duplicate code.
- Moved code which should have been in the class into the class.
- Fix the handling of the 'deleteentry' update action. It's no longer
necessary to supply fake attributes to make it work. Detect case
where subsequent update applies a change to entry previously marked
for deletetion. General clean-up and simplification of the
'deleteentry' logic.
- Rewrote a couple of functions to be clearer and more Pythonic.
- Added documentation on the data structure being used.
- Simplfy the use of update_from_dict()
* Removed all usage of get_schema() which was being called prior to
accessing the .schema attribute of an object. If a class is using
internal lazy loading as an optimization it's not right to require
users of the interface to be aware of internal
optimization's. schema is now a property and when the schema
property is accessed it calls a private internal method to perform
the lazy loading.
* Added SchemaCache class to cache the schema's from individual
servers. This was done because of the observation we talk to
different LDAP servers, each of which may have it's own
schema. Previously we globally cached the schema from the first
server we connected to and returned that schema in all contexts. The
cache includes controls to invalidate it thus forcing a schema
refresh.
* Schema caching is now senstive to the run time context. During
install and upgrade the schema can change leading to errors due to
out-of-date cached schema. The schema cache is refreshed in these
contexts.
* We are aware of the LDAP syntax of all LDAP attributes. Every
attribute returned from an LDAP operation is passed through a
central table look-up based on it's LDAP syntax. The table key is
the LDAP syntax it's value is a Python callable that returns a
Python object matching the LDAP syntax. There are a handful of LDAP
attributes whose syntax is historically incorrect
(e.g. DistguishedNames that are defined as DirectoryStrings). The
table driven conversion mechanism is augmented with a table of
hard coded exceptions.
Currently only the following conversions occur via the table:
- dn's are converted to DN objects
- binary objects are converted to Python str objects (IPA
convention).
- everything else is converted to unicode using UTF-8 decoding (IPA
convention).
However, now that the table driven conversion mechanism is in place
it would be trivial to do things such as converting attributes
which have LDAP integer syntax into a Python integer, etc.
* Expected values in the unit tests which are a DN no longer need to
use lambda expressions to promote the returned value to a DN for
equality comparison. The return value is automatically promoted to
a DN. The lambda expressions have been removed making the code much
simpler and easier to read.
* Add class level logging to a number of classes which did not support
logging, less need for use of root_logger.
* Remove ipaserver/conn.py, it was unused.
* Consolidated duplicate code wherever it was found.
* Fixed many places that used string concatenation to form a new
string rather than string formatting operators. This is necessary
because string formatting converts it's arguments to a string prior
to building the result string. You can't concatenate a string and a
non-string.
* Simplify logic in rename_managed plugin. Use DN operators to edit
dn's.
* The live version of ipa-ldap-updater did not generate a log file.
The offline version did, now both do.
https://fedorahosted.org/freeipa/ticket/1670
https://fedorahosted.org/freeipa/ticket/1671
https://fedorahosted.org/freeipa/ticket/1672
https://fedorahosted.org/freeipa/ticket/1673
https://fedorahosted.org/freeipa/ticket/1674
https://fedorahosted.org/freeipa/ticket/1392
https://fedorahosted.org/freeipa/ticket/2872
2012-05-13 06:36:35 -05:00
|
|
|
assert isinstance(dn, DN)
|
2009-06-24 08:09:26 -05:00
|
|
|
# delete optional parental connection (direct maps may not have this)
|
|
|
|
try:
|
2013-10-31 11:54:21 -05:00
|
|
|
entry_attrs = ldap.find_entry_by_attr(
|
2009-06-24 08:09:26 -05:00
|
|
|
'automountinformation', keys[0], 'automount',
|
2013-02-04 02:47:00 -06:00
|
|
|
base_dn=DN(self.obj.container_dn, api.env.basedn)
|
2009-06-24 08:09:26 -05:00
|
|
|
)
|
2013-10-31 11:54:21 -05:00
|
|
|
ldap.delete_entry(entry_attrs)
|
2009-06-24 08:09:26 -05:00
|
|
|
except errors.NotFound:
|
|
|
|
pass
|
|
|
|
return True
|
|
|
|
|
|
|
|
api.register(automountmap_del)
|
|
|
|
|
|
|
|
|
|
|
|
class automountmap_mod(LDAPUpdate):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Modify an automount map.')
|
2009-06-24 08:09:26 -05:00
|
|
|
|
2011-07-21 09:49:35 -05:00
|
|
|
msg_summary = _('Modified automount map "%(value)s"')
|
|
|
|
|
2009-06-24 08:09:26 -05:00
|
|
|
api.register(automountmap_mod)
|
|
|
|
|
|
|
|
|
|
|
|
class automountmap_find(LDAPSearch):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Search for an automount map.')
|
2009-06-24 08:09:26 -05:00
|
|
|
|
2011-07-21 09:49:35 -05:00
|
|
|
msg_summary = ngettext(
|
|
|
|
'%(count)d automount map matched',
|
|
|
|
'%(count)d automount maps matched', 0
|
|
|
|
)
|
|
|
|
|
2009-06-24 08:09:26 -05:00
|
|
|
api.register(automountmap_find)
|
|
|
|
|
|
|
|
|
|
|
|
class automountmap_show(LDAPRetrieve):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Display an automount map.')
|
2009-06-24 08:09:26 -05:00
|
|
|
|
|
|
|
api.register(automountmap_show)
|
|
|
|
|
|
|
|
|
|
|
|
class automountkey(LDAPObject):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Automount key object.')
|
|
|
|
|
2009-08-25 07:34:42 -05:00
|
|
|
parent_object = 'automountmap'
|
|
|
|
container_dn = api.env.container_automount
|
2011-07-12 11:01:25 -05:00
|
|
|
object_name = _('automount key')
|
|
|
|
object_name_plural = _('automount keys')
|
2009-06-24 08:09:26 -05:00
|
|
|
object_class = ['automount']
|
2009-08-25 07:34:42 -05:00
|
|
|
default_attributes = [
|
|
|
|
'automountkey', 'automountinformation', 'description'
|
|
|
|
]
|
2012-02-29 12:31:20 -06:00
|
|
|
rdn_is_primary_key = True
|
2010-12-19 13:23:16 -06:00
|
|
|
rdn_separator = ' '
|
2009-06-24 08:09:26 -05:00
|
|
|
|
|
|
|
takes_params = (
|
2010-12-06 14:09:03 -06:00
|
|
|
IA5Str('automountkey',
|
|
|
|
cli_name='key',
|
|
|
|
label=_('Key'),
|
2011-03-04 10:08:54 -06:00
|
|
|
doc=_('Automount key name.'),
|
2011-08-01 09:41:28 -05:00
|
|
|
flags=('req_update',),
|
2009-06-24 08:09:26 -05:00
|
|
|
),
|
2010-12-06 14:09:03 -06:00
|
|
|
IA5Str('automountinformation',
|
|
|
|
cli_name='info',
|
|
|
|
label=_('Mount information'),
|
2009-06-24 08:09:26 -05:00
|
|
|
),
|
2010-12-19 13:23:16 -06:00
|
|
|
Str('description',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('description'),
|
2010-12-19 13:23:16 -06:00
|
|
|
primary_key=True,
|
|
|
|
required=False,
|
|
|
|
flags=['no_create', 'no_update', 'no_search', 'no_output'],
|
|
|
|
exclude='webui',
|
2009-06-24 08:09:26 -05:00
|
|
|
),
|
|
|
|
)
|
|
|
|
|
2010-12-19 13:23:16 -06:00
|
|
|
num_parents = 2
|
2010-02-08 06:03:28 -06:00
|
|
|
label = _('Automount Keys')
|
2011-07-13 21:10:47 -05:00
|
|
|
label_singular = _('Automount Key')
|
2010-12-19 13:23:16 -06:00
|
|
|
already_exists_msg = _('The key,info pair must be unique. A key named %(key)s with info %(info)s already exists')
|
2011-06-09 13:06:58 -05:00
|
|
|
key_already_exists_msg = _('key named %(key)s already exists')
|
2010-12-19 13:23:16 -06:00
|
|
|
object_not_found_msg = _('The automount key %(key)s with info %(info)s does not exist')
|
|
|
|
|
|
|
|
def get_dn(self, *keys, **kwargs):
|
|
|
|
# all commands except for create send pk in keys, too
|
|
|
|
# create cannot due to validation in frontend.py
|
2011-06-09 13:06:58 -05:00
|
|
|
ldap = self.backend
|
2010-12-19 13:23:16 -06:00
|
|
|
if len(keys) == self.num_parents:
|
|
|
|
try:
|
|
|
|
pkey = kwargs[self.primary_key.name]
|
|
|
|
except KeyError:
|
|
|
|
raise ValueError('Not enough keys and pkey not in kwargs')
|
|
|
|
parent_keys = keys
|
|
|
|
else:
|
|
|
|
pkey = keys[-1]
|
|
|
|
parent_keys = keys[:-1]
|
|
|
|
|
|
|
|
parent_dn = self.api.Object[self.parent_object].get_dn(*parent_keys)
|
|
|
|
dn = self.backend.make_dn_from_attr(
|
|
|
|
self.primary_key.name,
|
|
|
|
pkey,
|
|
|
|
parent_dn
|
|
|
|
)
|
2011-06-09 13:06:58 -05:00
|
|
|
# If we're doing an add then just return the dn we created, there
|
|
|
|
# is no need to check for it.
|
|
|
|
if kwargs.get('add_operation', False):
|
|
|
|
return dn
|
|
|
|
# We had an older mechanism where description consisted of
|
|
|
|
# 'automountkey automountinformation' so we could support multiple
|
|
|
|
# direct maps. This made showing keys nearly impossible since it
|
|
|
|
# required automountinfo to show, which if you had you didn't need
|
|
|
|
# to look at the key. We still support existing entries but now
|
|
|
|
# only create this type of dn when the key is /-
|
|
|
|
#
|
|
|
|
# First we look with the information given, then try to search for
|
|
|
|
# the right entry.
|
|
|
|
try:
|
2013-10-31 11:54:21 -05:00
|
|
|
dn = ldap.get_entry(dn, ['*']).dn
|
2011-06-09 13:06:58 -05:00
|
|
|
except errors.NotFound:
|
|
|
|
if kwargs.get('automountinformation', False):
|
|
|
|
sfilter = '(&(automountkey=%s)(automountinformation=%s))' % \
|
|
|
|
(kwargs['automountkey'], kwargs['automountinformation'])
|
|
|
|
else:
|
|
|
|
sfilter = '(automountkey=%s)' % kwargs['automountkey']
|
2013-02-04 02:47:00 -06:00
|
|
|
basedn = DN(('automountmapname', parent_keys[1]),
|
|
|
|
('cn', parent_keys[0]), self.container_dn,
|
|
|
|
api.env.basedn)
|
2011-06-09 13:06:58 -05:00
|
|
|
attrs_list = ['*']
|
2013-01-31 08:02:01 -06:00
|
|
|
entries, truncated = ldap.find_entries(
|
|
|
|
sfilter, attrs_list, basedn, ldap.SCOPE_ONELEVEL)
|
2011-06-09 13:06:58 -05:00
|
|
|
if len(entries) > 1:
|
|
|
|
raise errors.NotFound(reason=_('More than one entry with key %(key)s found, use --info to select specific entry.') % dict(key=pkey))
|
2012-04-17 02:56:04 -05:00
|
|
|
if truncated:
|
|
|
|
raise errors.LimitsExceeded()
|
2013-10-31 11:54:21 -05:00
|
|
|
dn = entries[0].dn
|
2011-06-09 13:06:58 -05:00
|
|
|
|
2010-12-19 13:23:16 -06:00
|
|
|
return dn
|
|
|
|
|
|
|
|
def handle_not_found(self, *keys):
|
|
|
|
pkey = keys[-1]
|
|
|
|
key = pkey.split(self.rdn_separator)[0]
|
|
|
|
info = self.rdn_separator.join(pkey.split(self.rdn_separator)[1:])
|
|
|
|
raise errors.NotFound(
|
|
|
|
reason=self.object_not_found_msg % {
|
|
|
|
'key': key, 'info': info,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
def handle_duplicate_entry(self, *keys):
|
|
|
|
pkey = keys[-1]
|
|
|
|
key = pkey.split(self.rdn_separator)[0]
|
|
|
|
info = self.rdn_separator.join(pkey.split(self.rdn_separator)[1:])
|
2011-06-09 13:06:58 -05:00
|
|
|
if info:
|
|
|
|
raise errors.DuplicateEntry(
|
|
|
|
message=self.already_exists_msg % {
|
|
|
|
'key': key, 'info': info,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
raise errors.DuplicateEntry(
|
|
|
|
message=self.key_already_exists_msg % {
|
|
|
|
'key': key,
|
|
|
|
}
|
|
|
|
)
|
2010-12-19 13:23:16 -06:00
|
|
|
|
2011-06-09 13:06:58 -05:00
|
|
|
def get_pk(self, key, info=None):
|
2011-08-01 09:41:28 -05:00
|
|
|
if key == DIRECT_MAP_KEY and info:
|
2011-06-09 13:06:58 -05:00
|
|
|
return self.rdn_separator.join((key,info))
|
|
|
|
else:
|
|
|
|
return key
|
2010-12-19 13:23:16 -06:00
|
|
|
|
|
|
|
def check_key_uniqueness(self, location, map, **keykw):
|
2011-06-09 13:06:58 -05:00
|
|
|
info = None
|
2010-12-19 13:23:16 -06:00
|
|
|
key = keykw.get('automountkey')
|
2011-06-09 13:06:58 -05:00
|
|
|
if key is None:
|
2010-12-19 13:23:16 -06:00
|
|
|
return
|
|
|
|
|
2011-06-09 13:06:58 -05:00
|
|
|
entries = self.methods.find(location, map, automountkey=key)['result']
|
2010-12-19 13:23:16 -06:00
|
|
|
if len(entries) > 0:
|
2011-08-01 09:41:28 -05:00
|
|
|
if key == DIRECT_MAP_KEY:
|
2011-06-09 13:06:58 -05:00
|
|
|
info = keykw.get('automountinformation')
|
|
|
|
entries = self.methods.find(location, map, **keykw)['result']
|
|
|
|
if len(entries) > 0:
|
|
|
|
self.handle_duplicate_entry(location, map, self.get_pk(key, info))
|
|
|
|
else: return
|
2010-12-19 13:23:16 -06:00
|
|
|
self.handle_duplicate_entry(location, map, self.get_pk(key, info))
|
2010-02-08 06:03:28 -06:00
|
|
|
|
2009-06-24 08:09:26 -05:00
|
|
|
api.register(automountkey)
|
|
|
|
|
|
|
|
|
|
|
|
class automountkey_add(LDAPCreate):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Create a new automount key.')
|
2011-07-21 09:49:35 -05:00
|
|
|
|
|
|
|
msg_summary = _('Added automount key "%(value)s"')
|
|
|
|
|
2012-04-17 11:42:35 -05:00
|
|
|
internal_options = ['description', 'add_operation']
|
|
|
|
|
2010-12-19 13:23:16 -06:00
|
|
|
def pre_callback(self, ldap, dn, entry_attrs, *keys, **options):
|
Use DN objects instead of strings
* Convert every string specifying a DN into a DN object
* Every place a dn was manipulated in some fashion it was replaced by
the use of DN operators
* Add new DNParam parameter type for parameters which are DN's
* DN objects are used 100% of the time throughout the entire data
pipeline whenever something is logically a dn.
* Many classes now enforce DN usage for their attributes which are
dn's. This is implmented via ipautil.dn_attribute_property(). The
only permitted types for a class attribute specified to be a DN are
either None or a DN object.
* Require that every place a dn is used it must be a DN object.
This translates into lot of::
assert isinstance(dn, DN)
sprinkled through out the code. Maintaining these asserts is
valuable to preserve DN type enforcement. The asserts can be
disabled in production.
The goal of 100% DN usage 100% of the time has been realized, these
asserts are meant to preserve that.
The asserts also proved valuable in detecting functions which did
not obey their function signatures, such as the baseldap pre and
post callbacks.
* Moved ipalib.dn to ipapython.dn because DN class is shared with all
components, not just the server which uses ipalib.
* All API's now accept DN's natively, no need to convert to str (or
unicode).
* Removed ipalib.encoder and encode/decode decorators. Type conversion
is now explicitly performed in each IPASimpleLDAPObject method which
emulates a ldap.SimpleLDAPObject method.
* Entity & Entry classes now utilize DN's
* Removed __getattr__ in Entity & Entity clases. There were two
problems with it. It presented synthetic Python object attributes
based on the current LDAP data it contained. There is no way to
validate synthetic attributes using code checkers, you can't search
the code to find LDAP attribute accesses (because synthetic
attriutes look like Python attributes instead of LDAP data) and
error handling is circumscribed. Secondly __getattr__ was hiding
Python internal methods which broke class semantics.
* Replace use of methods inherited from ldap.SimpleLDAPObject via
IPAdmin class with IPAdmin methods. Directly using inherited methods
was causing us to bypass IPA logic. Mostly this meant replacing the
use of search_s() with getEntry() or getList(). Similarly direct
access of the LDAP data in classes using IPAdmin were replaced with
calls to getValue() or getValues().
* Objects returned by ldap2.find_entries() are now compatible with
either the python-ldap access methodology or the Entity/Entry access
methodology.
* All ldap operations now funnel through the common
IPASimpleLDAPObject giving us a single location where we interface
to python-ldap and perform conversions.
* The above 4 modifications means we've greatly reduced the
proliferation of multiple inconsistent ways to perform LDAP
operations. We are well on the way to having a single API in IPA for
doing LDAP (a long range goal).
* All certificate subject bases are now DN's
* DN objects were enhanced thusly:
- find, rfind, index, rindex, replace and insert methods were added
- AVA, RDN and DN classes were refactored in immutable and mutable
variants, the mutable variants are EditableAVA, EditableRDN and
EditableDN. By default we use the immutable variants preserving
important semantics. To edit a DN cast it to an EditableDN and
cast it back to DN when done editing. These issues are fully
described in other documentation.
- first_key_match was removed
- DN equalty comparison permits comparison to a basestring
* Fixed ldapupdate to work with DN's. This work included:
- Enhance test_updates.py to do more checking after applying
update. Add test for update_from_dict(). Convert code to use
unittest classes.
- Consolidated duplicate code.
- Moved code which should have been in the class into the class.
- Fix the handling of the 'deleteentry' update action. It's no longer
necessary to supply fake attributes to make it work. Detect case
where subsequent update applies a change to entry previously marked
for deletetion. General clean-up and simplification of the
'deleteentry' logic.
- Rewrote a couple of functions to be clearer and more Pythonic.
- Added documentation on the data structure being used.
- Simplfy the use of update_from_dict()
* Removed all usage of get_schema() which was being called prior to
accessing the .schema attribute of an object. If a class is using
internal lazy loading as an optimization it's not right to require
users of the interface to be aware of internal
optimization's. schema is now a property and when the schema
property is accessed it calls a private internal method to perform
the lazy loading.
* Added SchemaCache class to cache the schema's from individual
servers. This was done because of the observation we talk to
different LDAP servers, each of which may have it's own
schema. Previously we globally cached the schema from the first
server we connected to and returned that schema in all contexts. The
cache includes controls to invalidate it thus forcing a schema
refresh.
* Schema caching is now senstive to the run time context. During
install and upgrade the schema can change leading to errors due to
out-of-date cached schema. The schema cache is refreshed in these
contexts.
* We are aware of the LDAP syntax of all LDAP attributes. Every
attribute returned from an LDAP operation is passed through a
central table look-up based on it's LDAP syntax. The table key is
the LDAP syntax it's value is a Python callable that returns a
Python object matching the LDAP syntax. There are a handful of LDAP
attributes whose syntax is historically incorrect
(e.g. DistguishedNames that are defined as DirectoryStrings). The
table driven conversion mechanism is augmented with a table of
hard coded exceptions.
Currently only the following conversions occur via the table:
- dn's are converted to DN objects
- binary objects are converted to Python str objects (IPA
convention).
- everything else is converted to unicode using UTF-8 decoding (IPA
convention).
However, now that the table driven conversion mechanism is in place
it would be trivial to do things such as converting attributes
which have LDAP integer syntax into a Python integer, etc.
* Expected values in the unit tests which are a DN no longer need to
use lambda expressions to promote the returned value to a DN for
equality comparison. The return value is automatically promoted to
a DN. The lambda expressions have been removed making the code much
simpler and easier to read.
* Add class level logging to a number of classes which did not support
logging, less need for use of root_logger.
* Remove ipaserver/conn.py, it was unused.
* Consolidated duplicate code wherever it was found.
* Fixed many places that used string concatenation to form a new
string rather than string formatting operators. This is necessary
because string formatting converts it's arguments to a string prior
to building the result string. You can't concatenate a string and a
non-string.
* Simplify logic in rename_managed plugin. Use DN operators to edit
dn's.
* The live version of ipa-ldap-updater did not generate a log file.
The offline version did, now both do.
https://fedorahosted.org/freeipa/ticket/1670
https://fedorahosted.org/freeipa/ticket/1671
https://fedorahosted.org/freeipa/ticket/1672
https://fedorahosted.org/freeipa/ticket/1673
https://fedorahosted.org/freeipa/ticket/1674
https://fedorahosted.org/freeipa/ticket/1392
https://fedorahosted.org/freeipa/ticket/2872
2012-05-13 06:36:35 -05:00
|
|
|
assert isinstance(dn, DN)
|
2012-04-16 08:29:42 -05:00
|
|
|
options.pop('add_operation', None)
|
|
|
|
options.pop('description', None)
|
2010-12-19 13:23:16 -06:00
|
|
|
self.obj.check_key_uniqueness(keys[-2], keys[-1], **options)
|
|
|
|
return dn
|
|
|
|
|
|
|
|
def get_args(self):
|
|
|
|
for key in self.obj.get_ancestor_primary_keys():
|
|
|
|
yield key
|
|
|
|
|
|
|
|
def execute(self, *keys, **options):
|
2011-06-09 13:06:58 -05:00
|
|
|
key = options['automountkey']
|
|
|
|
info = options.get('automountinformation', None)
|
2011-08-01 09:41:28 -05:00
|
|
|
options[self.obj.primary_key.name] = self.obj.get_pk(key, info)
|
2011-06-09 13:06:58 -05:00
|
|
|
options['add_operation'] = True
|
2011-07-27 04:24:04 -05:00
|
|
|
result = super(automountkey_add, self).execute(*keys, **options)
|
|
|
|
result['value'] = options['automountkey']
|
|
|
|
return result
|
2009-06-24 08:09:26 -05:00
|
|
|
|
|
|
|
api.register(automountkey_add)
|
|
|
|
|
|
|
|
|
2009-08-25 07:34:42 -05:00
|
|
|
class automountmap_add_indirect(LDAPCreate):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Create a new indirect mount point.')
|
2011-07-21 09:49:35 -05:00
|
|
|
|
|
|
|
msg_summary = _('Added automount indirect map "%(value)s"')
|
|
|
|
|
2009-11-18 09:38:45 -06:00
|
|
|
takes_options = LDAPCreate.takes_options + (
|
2009-08-25 07:34:42 -05:00
|
|
|
Str('key',
|
|
|
|
cli_name='mount',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Mount point'),
|
2009-08-25 07:34:42 -05:00
|
|
|
),
|
|
|
|
Str('parentmap?',
|
|
|
|
cli_name='parentmap',
|
2010-02-19 10:08:16 -06:00
|
|
|
label=_('Parent map'),
|
2011-03-04 10:08:54 -06:00
|
|
|
doc=_('Name of parent automount map (default: auto.master).'),
|
2009-08-25 07:34:42 -05:00
|
|
|
default=u'auto.master',
|
|
|
|
autofill=True,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
def execute(self, *keys, **options):
|
2012-04-16 08:29:42 -05:00
|
|
|
parentmap = options.pop('parentmap', None)
|
|
|
|
key = options.pop('key')
|
2009-08-25 07:34:42 -05:00
|
|
|
result = self.api.Command['automountmap_add'](*keys, **options)
|
2011-07-27 09:25:48 -05:00
|
|
|
try:
|
2012-04-16 08:29:42 -05:00
|
|
|
if parentmap != u'auto.master':
|
|
|
|
if key.startswith('/'):
|
|
|
|
raise errors.ValidationError(name='mount',
|
|
|
|
error=_('mount point is relative to parent map, '
|
|
|
|
'cannot begin with /'))
|
2012-01-19 15:15:50 -06:00
|
|
|
location = keys[0]
|
|
|
|
map = keys[1]
|
|
|
|
options['automountinformation'] = map
|
|
|
|
|
|
|
|
# Ensure the referenced map exists
|
2012-04-16 08:29:42 -05:00
|
|
|
self.api.Command['automountmap_show'](location, parentmap)
|
2012-01-19 15:15:50 -06:00
|
|
|
# Add a submount key
|
|
|
|
self.api.Command['automountkey_add'](
|
2012-04-17 11:42:35 -05:00
|
|
|
location, parentmap, automountkey=key,
|
2012-04-16 08:29:42 -05:00
|
|
|
automountinformation='-fstype=autofs ldap:%s' % map)
|
2012-01-19 15:15:50 -06:00
|
|
|
else: # adding to auto.master
|
2012-03-15 10:10:05 -05:00
|
|
|
# Ensure auto.master exists
|
2012-04-16 08:29:42 -05:00
|
|
|
self.api.Command['automountmap_show'](keys[0], parentmap)
|
2012-01-19 15:15:50 -06:00
|
|
|
self.api.Command['automountkey_add'](
|
2012-04-16 08:29:42 -05:00
|
|
|
keys[0], u'auto.master', automountkey=key,
|
|
|
|
automountinformation=keys[1])
|
|
|
|
except Exception:
|
2011-07-27 09:25:48 -05:00
|
|
|
# The key exists, drop the map
|
2012-04-16 08:29:42 -05:00
|
|
|
self.api.Command['automountmap_del'](*keys)
|
|
|
|
raise
|
2009-08-25 07:34:42 -05:00
|
|
|
return result
|
|
|
|
|
|
|
|
api.register(automountmap_add_indirect)
|
|
|
|
|
|
|
|
|
2009-06-24 08:09:26 -05:00
|
|
|
class automountkey_del(LDAPDelete):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Delete an automount key.')
|
2011-07-21 09:49:35 -05:00
|
|
|
|
|
|
|
msg_summary = _('Deleted automount key "%(value)s"')
|
|
|
|
|
2010-12-19 13:23:16 -06:00
|
|
|
takes_options = LDAPDelete.takes_options + (
|
|
|
|
IA5Str('automountkey',
|
|
|
|
cli_name='key',
|
|
|
|
label=_('Key'),
|
2011-03-04 10:08:54 -06:00
|
|
|
doc=_('Automount key name.'),
|
2010-12-19 13:23:16 -06:00
|
|
|
),
|
2011-06-09 13:06:58 -05:00
|
|
|
IA5Str('automountinformation?',
|
2010-12-19 13:23:16 -06:00
|
|
|
cli_name='info',
|
|
|
|
label=_('Mount information'),
|
|
|
|
),
|
|
|
|
)
|
2011-08-02 10:56:47 -05:00
|
|
|
def get_options(self):
|
2012-06-21 07:20:26 -05:00
|
|
|
for option in super(automountkey_del, self).get_options():
|
2011-08-02 10:56:47 -05:00
|
|
|
if option.name == 'continue':
|
|
|
|
# TODO: hide for now - remove in future major release
|
|
|
|
yield option.clone(exclude='webui',
|
|
|
|
flags=['no_option', 'no_output'])
|
|
|
|
else:
|
|
|
|
yield option
|
2010-12-19 13:23:16 -06:00
|
|
|
|
|
|
|
def get_args(self):
|
|
|
|
for key in self.obj.get_ancestor_primary_keys():
|
|
|
|
yield key
|
|
|
|
|
|
|
|
def execute(self, *keys, **options):
|
|
|
|
keys += (self.obj.get_pk(options['automountkey'],
|
2011-06-09 13:06:58 -05:00
|
|
|
options.get('automountinformation', None)),)
|
2010-12-19 13:23:16 -06:00
|
|
|
options[self.obj.primary_key.name] = self.obj.get_pk(
|
|
|
|
options['automountkey'],
|
2011-06-09 13:06:58 -05:00
|
|
|
options.get('automountinformation', None))
|
2011-07-27 04:24:04 -05:00
|
|
|
result = super(automountkey_del, self).execute(*keys, **options)
|
|
|
|
result['value'] = options['automountkey']
|
|
|
|
return result
|
2009-06-24 08:09:26 -05:00
|
|
|
|
|
|
|
api.register(automountkey_del)
|
|
|
|
|
|
|
|
|
|
|
|
class automountkey_mod(LDAPUpdate):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Modify an automount key.')
|
2011-07-21 09:49:35 -05:00
|
|
|
|
|
|
|
msg_summary = _('Modified automount key "%(value)s"')
|
|
|
|
|
2012-04-17 11:42:35 -05:00
|
|
|
internal_options = ['newautomountkey']
|
|
|
|
|
2010-12-19 13:23:16 -06:00
|
|
|
takes_options = LDAPUpdate.takes_options + (
|
2011-08-01 09:41:28 -05:00
|
|
|
IA5Str('newautomountinformation?',
|
2010-12-19 13:23:16 -06:00
|
|
|
cli_name='newinfo',
|
|
|
|
label=_('New mount information'),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
def get_args(self):
|
|
|
|
for key in self.obj.get_ancestor_primary_keys():
|
|
|
|
yield key
|
|
|
|
|
|
|
|
def pre_callback(self, ldap, dn, entry_attrs, *keys, **options):
|
Use DN objects instead of strings
* Convert every string specifying a DN into a DN object
* Every place a dn was manipulated in some fashion it was replaced by
the use of DN operators
* Add new DNParam parameter type for parameters which are DN's
* DN objects are used 100% of the time throughout the entire data
pipeline whenever something is logically a dn.
* Many classes now enforce DN usage for their attributes which are
dn's. This is implmented via ipautil.dn_attribute_property(). The
only permitted types for a class attribute specified to be a DN are
either None or a DN object.
* Require that every place a dn is used it must be a DN object.
This translates into lot of::
assert isinstance(dn, DN)
sprinkled through out the code. Maintaining these asserts is
valuable to preserve DN type enforcement. The asserts can be
disabled in production.
The goal of 100% DN usage 100% of the time has been realized, these
asserts are meant to preserve that.
The asserts also proved valuable in detecting functions which did
not obey their function signatures, such as the baseldap pre and
post callbacks.
* Moved ipalib.dn to ipapython.dn because DN class is shared with all
components, not just the server which uses ipalib.
* All API's now accept DN's natively, no need to convert to str (or
unicode).
* Removed ipalib.encoder and encode/decode decorators. Type conversion
is now explicitly performed in each IPASimpleLDAPObject method which
emulates a ldap.SimpleLDAPObject method.
* Entity & Entry classes now utilize DN's
* Removed __getattr__ in Entity & Entity clases. There were two
problems with it. It presented synthetic Python object attributes
based on the current LDAP data it contained. There is no way to
validate synthetic attributes using code checkers, you can't search
the code to find LDAP attribute accesses (because synthetic
attriutes look like Python attributes instead of LDAP data) and
error handling is circumscribed. Secondly __getattr__ was hiding
Python internal methods which broke class semantics.
* Replace use of methods inherited from ldap.SimpleLDAPObject via
IPAdmin class with IPAdmin methods. Directly using inherited methods
was causing us to bypass IPA logic. Mostly this meant replacing the
use of search_s() with getEntry() or getList(). Similarly direct
access of the LDAP data in classes using IPAdmin were replaced with
calls to getValue() or getValues().
* Objects returned by ldap2.find_entries() are now compatible with
either the python-ldap access methodology or the Entity/Entry access
methodology.
* All ldap operations now funnel through the common
IPASimpleLDAPObject giving us a single location where we interface
to python-ldap and perform conversions.
* The above 4 modifications means we've greatly reduced the
proliferation of multiple inconsistent ways to perform LDAP
operations. We are well on the way to having a single API in IPA for
doing LDAP (a long range goal).
* All certificate subject bases are now DN's
* DN objects were enhanced thusly:
- find, rfind, index, rindex, replace and insert methods were added
- AVA, RDN and DN classes were refactored in immutable and mutable
variants, the mutable variants are EditableAVA, EditableRDN and
EditableDN. By default we use the immutable variants preserving
important semantics. To edit a DN cast it to an EditableDN and
cast it back to DN when done editing. These issues are fully
described in other documentation.
- first_key_match was removed
- DN equalty comparison permits comparison to a basestring
* Fixed ldapupdate to work with DN's. This work included:
- Enhance test_updates.py to do more checking after applying
update. Add test for update_from_dict(). Convert code to use
unittest classes.
- Consolidated duplicate code.
- Moved code which should have been in the class into the class.
- Fix the handling of the 'deleteentry' update action. It's no longer
necessary to supply fake attributes to make it work. Detect case
where subsequent update applies a change to entry previously marked
for deletetion. General clean-up and simplification of the
'deleteentry' logic.
- Rewrote a couple of functions to be clearer and more Pythonic.
- Added documentation on the data structure being used.
- Simplfy the use of update_from_dict()
* Removed all usage of get_schema() which was being called prior to
accessing the .schema attribute of an object. If a class is using
internal lazy loading as an optimization it's not right to require
users of the interface to be aware of internal
optimization's. schema is now a property and when the schema
property is accessed it calls a private internal method to perform
the lazy loading.
* Added SchemaCache class to cache the schema's from individual
servers. This was done because of the observation we talk to
different LDAP servers, each of which may have it's own
schema. Previously we globally cached the schema from the first
server we connected to and returned that schema in all contexts. The
cache includes controls to invalidate it thus forcing a schema
refresh.
* Schema caching is now senstive to the run time context. During
install and upgrade the schema can change leading to errors due to
out-of-date cached schema. The schema cache is refreshed in these
contexts.
* We are aware of the LDAP syntax of all LDAP attributes. Every
attribute returned from an LDAP operation is passed through a
central table look-up based on it's LDAP syntax. The table key is
the LDAP syntax it's value is a Python callable that returns a
Python object matching the LDAP syntax. There are a handful of LDAP
attributes whose syntax is historically incorrect
(e.g. DistguishedNames that are defined as DirectoryStrings). The
table driven conversion mechanism is augmented with a table of
hard coded exceptions.
Currently only the following conversions occur via the table:
- dn's are converted to DN objects
- binary objects are converted to Python str objects (IPA
convention).
- everything else is converted to unicode using UTF-8 decoding (IPA
convention).
However, now that the table driven conversion mechanism is in place
it would be trivial to do things such as converting attributes
which have LDAP integer syntax into a Python integer, etc.
* Expected values in the unit tests which are a DN no longer need to
use lambda expressions to promote the returned value to a DN for
equality comparison. The return value is automatically promoted to
a DN. The lambda expressions have been removed making the code much
simpler and easier to read.
* Add class level logging to a number of classes which did not support
logging, less need for use of root_logger.
* Remove ipaserver/conn.py, it was unused.
* Consolidated duplicate code wherever it was found.
* Fixed many places that used string concatenation to form a new
string rather than string formatting operators. This is necessary
because string formatting converts it's arguments to a string prior
to building the result string. You can't concatenate a string and a
non-string.
* Simplify logic in rename_managed plugin. Use DN operators to edit
dn's.
* The live version of ipa-ldap-updater did not generate a log file.
The offline version did, now both do.
https://fedorahosted.org/freeipa/ticket/1670
https://fedorahosted.org/freeipa/ticket/1671
https://fedorahosted.org/freeipa/ticket/1672
https://fedorahosted.org/freeipa/ticket/1673
https://fedorahosted.org/freeipa/ticket/1674
https://fedorahosted.org/freeipa/ticket/1392
https://fedorahosted.org/freeipa/ticket/2872
2012-05-13 06:36:35 -05:00
|
|
|
assert isinstance(dn, DN)
|
2011-08-01 09:41:28 -05:00
|
|
|
if 'newautomountkey' in options:
|
|
|
|
entry_attrs['automountkey'] = options['newautomountkey']
|
|
|
|
if 'newautomountinformation' in options:
|
|
|
|
entry_attrs['automountinformation'] = options['newautomountinformation']
|
2010-12-19 13:23:16 -06:00
|
|
|
return dn
|
|
|
|
|
|
|
|
def execute(self, *keys, **options):
|
2011-08-01 09:41:28 -05:00
|
|
|
ldap = self.api.Backend.ldap2
|
|
|
|
key = options['automountkey']
|
|
|
|
info = options.get('automountinformation', None)
|
|
|
|
keys += (self.obj.get_pk(key, info), )
|
|
|
|
|
|
|
|
# handle RDN changes
|
|
|
|
if 'rename' in options or 'newautomountinformation' in options:
|
|
|
|
new_key = options.get('rename', key)
|
|
|
|
new_info = options.get('newautomountinformation', info)
|
|
|
|
|
|
|
|
if new_key == DIRECT_MAP_KEY and not new_info:
|
|
|
|
# automountinformation attribute of existing LDAP object needs
|
|
|
|
# to be retrieved so that RDN can be generated
|
|
|
|
dn = self.obj.get_dn(*keys, **options)
|
2013-10-31 11:54:21 -05:00
|
|
|
entry_attrs_ = ldap.get_entry(dn, ['automountinformation'])
|
2011-08-01 09:41:28 -05:00
|
|
|
new_info = entry_attrs_.get('automountinformation', [])[0]
|
|
|
|
|
|
|
|
# automounkey attribute cannot be overwritten so that get_dn()
|
|
|
|
# still works right
|
|
|
|
options['newautomountkey'] = new_key
|
|
|
|
|
|
|
|
new_rdn = self.obj.get_pk(new_key, new_info)
|
|
|
|
if new_rdn != keys[-1]:
|
|
|
|
options['rename'] = new_rdn
|
|
|
|
|
2011-07-27 04:24:04 -05:00
|
|
|
result = super(automountkey_mod, self).execute(*keys, **options)
|
|
|
|
result['value'] = options['automountkey']
|
|
|
|
return result
|
2009-06-24 08:09:26 -05:00
|
|
|
|
|
|
|
api.register(automountkey_mod)
|
|
|
|
|
|
|
|
|
|
|
|
class automountkey_find(LDAPSearch):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Search for an automount key.')
|
2009-06-24 08:09:26 -05:00
|
|
|
|
2011-07-21 09:49:35 -05:00
|
|
|
msg_summary = ngettext(
|
|
|
|
'%(count)d automount key matched',
|
|
|
|
'%(count)d automount keys matched', 0
|
|
|
|
)
|
|
|
|
|
2009-06-24 08:09:26 -05:00
|
|
|
api.register(automountkey_find)
|
|
|
|
|
|
|
|
|
|
|
|
class automountkey_show(LDAPRetrieve):
|
2011-08-24 21:48:30 -05:00
|
|
|
__doc__ = _('Display an automount key.')
|
|
|
|
|
2010-12-19 13:23:16 -06:00
|
|
|
takes_options = LDAPRetrieve.takes_options + (
|
|
|
|
IA5Str('automountkey',
|
|
|
|
cli_name='key',
|
|
|
|
label=_('Key'),
|
2011-03-04 10:08:54 -06:00
|
|
|
doc=_('Automount key name.'),
|
2010-12-19 13:23:16 -06:00
|
|
|
),
|
2011-06-09 13:06:58 -05:00
|
|
|
IA5Str('automountinformation?',
|
2010-12-19 13:23:16 -06:00
|
|
|
cli_name='info',
|
|
|
|
label=_('Mount information'),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
def get_args(self):
|
|
|
|
for key in self.obj.get_ancestor_primary_keys():
|
|
|
|
yield key
|
|
|
|
|
|
|
|
def execute(self, *keys, **options):
|
|
|
|
keys += (self.obj.get_pk(options['automountkey'],
|
2011-06-09 13:06:58 -05:00
|
|
|
options.get('automountinformation', None)), )
|
2010-12-19 13:23:16 -06:00
|
|
|
options[self.obj.primary_key.name] = self.obj.get_pk(
|
|
|
|
options['automountkey'],
|
2011-06-09 13:06:58 -05:00
|
|
|
options.get('automountinformation', None))
|
|
|
|
|
2011-07-27 04:24:04 -05:00
|
|
|
result = super(automountkey_show, self).execute(*keys, **options)
|
|
|
|
result['value'] = options['automountkey']
|
|
|
|
return result
|
2009-06-24 08:09:26 -05:00
|
|
|
|
|
|
|
api.register(automountkey_show)
|