summaryrefslogtreecommitdiffstats
path: root/ipa-server
diff options
context:
space:
mode:
authorJohn Dennis <jdennis@redhat.com>2007-11-14 15:32:08 -0500
committerJohn Dennis <jdennis@redhat.com>2007-11-14 15:32:08 -0500
commitc4dbe6433da131b618ea2bfd9f0bfc5076c40ff2 (patch)
treed2dd35ef12434ed76b9311736a4a979aaa54e6ae /ipa-server
parentc24da12fe1c68cc2ea5211763e8904b646a17d95 (diff)
downloadfreeipa-c4dbe6433da131b618ea2bfd9f0bfc5076c40ff2.tar.gz
freeipa-c4dbe6433da131b618ea2bfd9f0bfc5076c40ff2.tar.xz
freeipa-c4dbe6433da131b618ea2bfd9f0bfc5076c40ff2.zip
add ipa-findradiusclient search
Diffstat (limited to 'ipa-server')
-rw-r--r--ipa-server/xmlrpc-server/funcs.py31
-rw-r--r--ipa-server/xmlrpc-server/ipaxmlrpc.py1
2 files changed, 32 insertions, 0 deletions
diff --git a/ipa-server/xmlrpc-server/funcs.py b/ipa-server/xmlrpc-server/funcs.py
index 38ba8c2b5..26fdba484 100644
--- a/ipa-server/xmlrpc-server/funcs.py
+++ b/ipa-server/xmlrpc-server/funcs.py
@@ -516,6 +516,36 @@ class IPAServer:
self.releaseConnection(conn)
return res
+ def find_radius_clients(self, ip_attrs, sattrs=None, searchlimit=0, timelimit=-1, opts=None):
+ def gen_filter(objectclass, attr, values):
+ '''Given ('myclass', 'myattr', [v1, v2]) returns
+ (&(objectclass=myclass)(|(myattr=v1)(myattr=v2)))
+ '''
+ # Don't use __safe_filter, prevents wildcarding
+ #attrs = ''.join(['(%s=%s)' % (attr, self.__safe_filter(val)) for val in values])
+ attrs = ''.join(['(%s=%s)' % (attr, val) for val in values])
+ filter = "(&(objectclass=%s)(|%s))" % (objectclass, attrs)
+ return filter
+
+ basedn = 'cn=clients,cn=radius,cn=services,cn=etc,%s' % self.basedn # FIXME, should not be hardcoded
+ filter = gen_filter('radiusClientProfile', 'radiusClientNASIpAddress', ip_attrs)
+ conn = self.getConnection(opts)
+ try:
+ try:
+ results = conn.getListAsync(basedn, self.scope, filter, sattrs, 0, None, None, timelimit, searchlimit)
+ except ipaerror.exception_for(ipaerror.LDAP_NOT_FOUND):
+ results = [0]
+ finally:
+ self.releaseConnection(conn)
+
+ counter = results[0]
+ results = results[1:]
+ radius_clients = [counter]
+ for radius_client in results:
+ radius_clients.append(self.convert_entry(radius_client))
+
+ return radius_clients
+
def get_add_schema (self):
"""Get the list of fields to be used when adding users in the GUI."""
@@ -1152,6 +1182,7 @@ class IPAServer:
return entries
+
def ldap_search_escape(match):
"""Escapes out nasty characters from the ldap search.
See RFC 2254."""
diff --git a/ipa-server/xmlrpc-server/ipaxmlrpc.py b/ipa-server/xmlrpc-server/ipaxmlrpc.py
index f958414ad..d5bdb6b23 100644
--- a/ipa-server/xmlrpc-server/ipaxmlrpc.py
+++ b/ipa-server/xmlrpc-server/ipaxmlrpc.py
@@ -355,6 +355,7 @@ def handler(req, profiling=False):
h.register_function(f.add_radius_client)
h.register_function(f.update_radius_client)
h.register_function(f.delete_radius_client)
+ h.register_function(f.find_radius_clients)
h.handle_request(req)
finally:
pass