summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2009-07-10 16:40:39 -0400
committerRob Crittenden <rcritten@redhat.com>2009-07-10 16:41:05 -0400
commite31d5fb1cfc7b7b2ed47202e0ef1c462f01a046b (patch)
tree840d01d9ef8781593bc518197be6afe9c969c3a0 /ipalib
parent51498038739cf4e3278457748938cd807095cfb3 (diff)
downloadfreeipa-e31d5fb1cfc7b7b2ed47202e0ef1c462f01a046b.tar.gz
freeipa-e31d5fb1cfc7b7b2ed47202e0ef1c462f01a046b.tar.xz
freeipa-e31d5fb1cfc7b7b2ed47202e0ef1c462f01a046b.zip
Implement support for non-LDAP-based actions that use the LDAP ACI subsystem.
There are some operations, like those for the certificate system, that don't need to write to the directory server. So instead we have an entry that we test against to determine whether the operation is allowed or not. This is done by attempting a write on the entry. If it would succeed then permission is granted. If not then denied. The write we attempt is actually invalid so the write itself will fail but the attempt will fail first if access is not permitted, so we can distinguish between the two without polluting the entry.
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/constants.py1
-rw-r--r--ipalib/errors.py2
-rw-r--r--ipalib/plugins/cert.py21
-rw-r--r--ipalib/plugins/virtual.py73
4 files changed, 91 insertions, 6 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py
index 60d2510b..e9216be0 100644
--- a/ipalib/constants.py
+++ b/ipalib/constants.py
@@ -96,6 +96,7 @@ DEFAULT_CONFIG = (
('container_netgroup', 'cn=ng,cn=alt'),
('container_hbac', 'cn=hbac'),
('container_dns', 'cn=dns'),
+ ('container_virtual', 'cn=virtual operations'),
# Ports, hosts, and URIs:
('lite_xmlrpc_port', 8888),
diff --git a/ipalib/errors.py b/ipalib/errors.py
index e3dfc14d..a08ee959 100644
--- a/ipalib/errors.py
+++ b/ipalib/errors.py
@@ -563,7 +563,7 @@ class ACIError(AuthorizationError):
"""
errno = 2100
- format = _('Insufficient access: %(info)r')
+ format = _('Insufficient access: %(info)s')
diff --git a/ipalib/plugins/cert.py b/ipalib/plugins/cert.py
index 2136bacf..e38ec181 100644
--- a/ipalib/plugins/cert.py
+++ b/ipalib/plugins/cert.py
@@ -28,6 +28,7 @@ if api.env.enable_ra is not True:
raise SkipPluginModule(reason='env.enable_ra is not True')
from ipalib import Command, Str, Int, Bytes, Flag
from ipalib import errors
+from ipalib.plugins.virtual import *
import base64
def validate_csr(ugettext, csr):
@@ -40,12 +41,13 @@ def validate_csr(ugettext, csr):
raise errors.Base64DecodeError(reason=str(e))
-class cert_request(Command):
+class cert_request(VirtualCommand):
"""
Submit a certificate singing request.
"""
takes_args = (Str('csr', validate_csr),)
+ operation="request certificate"
takes_options = (
Str('principal',
@@ -63,6 +65,7 @@ class cert_request(Command):
)
def execute(self, csr, **kw):
+ super(cert_request, self).execute()
skw = {"all": True}
principal = kw.get('principal')
add = kw.get('add')
@@ -104,15 +107,17 @@ class cert_request(Command):
api.register(cert_request)
-class cert_status(Command):
+class cert_status(VirtualCommand):
"""
Check status of a certificate signing request.
"""
takes_args = ('request_id')
+ operation = "certificate status"
def execute(self, request_id, **kw):
+ super(cert_status, self).execute()
return self.Backend.ra.check_request_status(request_id)
def output_for_cli(self, textui, result, *args, **kw):
@@ -124,14 +129,16 @@ class cert_status(Command):
api.register(cert_status)
-class cert_get(Command):
+class cert_get(VirtualCommand):
"""
Retrieve an existing certificate.
"""
takes_args = ('serial_number')
+ operation="retrieve certificate"
def execute(self, serial_number):
+ super(cert_get, self).execute()
return self.Backend.ra.get_certificate(serial_number)
def output_for_cli(self, textui, result, *args, **kw):
@@ -143,12 +150,13 @@ class cert_get(Command):
api.register(cert_get)
-class cert_revoke(Command):
+class cert_revoke(VirtualCommand):
"""
Revoke a certificate.
"""
takes_args = ('serial_number')
+ operation = "revoke certificate"
# FIXME: The default is 0. Is this really an Int param?
takes_options = (
@@ -162,6 +170,7 @@ class cert_revoke(Command):
def execute(self, serial_number, **kw):
+ super(cert_revoke, self).execute()
return self.Backend.ra.revoke_certificate(serial_number, **kw)
def output_for_cli(self, textui, result, *args, **kw):
@@ -173,14 +182,16 @@ class cert_revoke(Command):
api.register(cert_revoke)
-class cert_remove_hold(Command):
+class cert_remove_hold(VirtualCommand):
"""
Take a revoked certificate off hold.
"""
takes_args = ('serial_number')
+ operation = "certificate remove hold"
def execute(self, serial_number, **kw):
+ super(cert_remove_hold, self).execute()
return self.Backend.ra.take_certificate_off_hold(serial_number)
def output_for_cli(self, textui, result, *args, **kw):
diff --git a/ipalib/plugins/virtual.py b/ipalib/plugins/virtual.py
new file mode 100644
index 00000000..a1dfbdf6
--- /dev/null
+++ b/ipalib/plugins/virtual.py
@@ -0,0 +1,73 @@
+# Authors:
+# Rob Crittenden <rcritten@redhat.com>
+#
+# Copyright (C) 2009 Red Hat
+# see file 'COPYING' for use and warranty information
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; version 2 only
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+"""
+Base classes for non-LDAP backend plugins.
+"""
+from ipalib import api
+from ipalib import Command
+from ipalib import errors
+
+class VirtualCommand(Command):
+ """
+ A command that doesn't use the LDAP backend but wants to use the
+ LDAP access control system to make authorization decisions.
+
+ The class variable operation is the commonName attribute of the
+ entry to be tested against.
+
+ In advance, you need to create an entry of the form:
+ cn=<operation>, api.env.container_virtual, api.env.basedn
+
+ Ex.
+ cn=request certificate, cn=virtual operations, dc=example, dc=com
+ """
+ operation = None
+
+ def execute(self, *args, **kw):
+ """
+ Perform the LDAP query to determine authorization.
+
+ This should be executed via super() before any actual work is done.
+ """
+ if self.operation is None:
+ raise errors.ACIError(info='operation not defined')
+
+ ldap = self.api.Backend.ldap
+ self.log.info("IPA: virtual verify %s" % self.operation)
+
+ operationdn = "cn=%s,%s,%s" % (self.operation, self.api.env.container_virtual, self.api.env.basedn)
+
+ # By adding this unknown objectclass we do several things.
+ # DS checks ACIs before the objectclass so we can test for ACI
+ # errors to know if we have rights. If we do have rights then the
+ # update will fail anyway with a Database error because of an
+ # unknown objectclass, so we can catch that gracefully as well.
+ try:
+ updatekw = {'objectclass': ['somerandomunknownclass']}
+ ldap.update(operationdn, **updatekw)
+ except errors.ACIError, e:
+ self.log.debug("%s" % str(e))
+ raise errors.ACIError(info='not allowed to perform this command')
+ except errors.DatabaseError:
+ return
+ except Exception, e:
+ # Something unexpected happened. Log it and deny access to be safe.
+ self.log.info("Virtual verify failed: %s" % str(e))
+ raise errors.ACIError(info='not allowed to perform this command')