Skip to content
LdapGroupDAO.java 38.8 KiB
Newer Older
/*
 ************************************************************************
 *******************  CANADIAN ASTRONOMY DATA CENTRE  *******************
 **************  CENTRE CANADIEN DE DONNÉES ASTRONOMIQUES  **************
 *
 *  (c) 2014.                            (c) 2014.
 *  Government of Canada                 Gouvernement du Canada
 *  National Research Council            Conseil national de recherches
 *  Ottawa, Canada, K1A 0R6              Ottawa, Canada, K1A 0R6
 *  All rights reserved                  Tous droits réservés
 *
 *  NRC disclaims any warranties,        Le CNRC dénie toute garantie
 *  expressed, implied, or               énoncée, implicite ou légale,
 *  statutory, of any kind with          de quelque nature que ce
 *  respect to the software,             soit, concernant le logiciel,
 *  including without limitation         y compris sans restriction
 *  any warranty of merchantability      toute garantie de valeur
 *  or fitness for a particular          marchande ou de pertinence
 *  purpose. NRC shall not be            pour un usage particulier.
 *  liable in any event for any          Le CNRC ne pourra en aucun cas
 *  damages, whether direct or           être tenu responsable de tout
 *  indirect, special or general,        dommage, direct ou indirect,
 *  consequential or incidental,         particulier ou général,
 *  arising from the use of the          accessoire ou fortuit, résultant
 *  software.  Neither the name          de l'utilisation du logiciel. Ni
 *  of the National Research             le nom du Conseil National de
 *  Council of Canada nor the            Recherches du Canada ni les noms
 *  names of its contributors may        de ses  participants ne peuvent
 *  be used to endorse or promote        être utilisés pour approuver ou
 *  products derived from this           promouvoir les produits dérivés
 *  software without specific prior      de ce logiciel sans autorisation
 *  written permission.                  préalable et particulière
 *                                       par écrit.
 *
 *  This file is part of the             Ce fichier fait partie du projet
 *  OpenCADC project.                    OpenCADC.
 *
 *  OpenCADC is free software:           OpenCADC est un logiciel libre ;
 *  you can redistribute it and/or       vous pouvez le redistribuer ou le
 *  modify it under the terms of         modifier suivant les termes de
 *  the GNU Affero General Public        la “GNU Affero General Public
 *  License as published by the          License” telle que publiée
 *  Free Software Foundation,            par la Free Software Foundation
 *  either version 3 of the              : soit la version 3 de cette
 *  License, or (at your option)         licence, soit (à votre gré)
 *  any later version.                   toute version ultérieure.
 *
 *  OpenCADC is distributed in the       OpenCADC est distribué
 *  hope that it will be useful,         dans l’espoir qu’il vous
 *  but WITHOUT ANY WARRANTY;            sera utile, mais SANS AUCUNE
 *  without even the implied             GARANTIE : sans même la garantie
 *  warranty of MERCHANTABILITY          implicite de COMMERCIALISABILITÉ
 *  or FITNESS FOR A PARTICULAR          ni d’ADÉQUATION À UN OBJECTIF
 *  PURPOSE.  See the GNU Affero         PARTICULIER. Consultez la Licence
 *  General Public License for           Générale Publique GNU Affero
 *  more details.                        pour plus de détails.
 *
 *  You should have received             Vous devriez avoir reçu une
 *  a copy of the GNU Affero             copie de la Licence Générale
 *  General Public License along         Publique GNU Affero avec
 *  with OpenCADC.  If not, see          OpenCADC ; si ce n’est
 *  <http://www.gnu.org/licenses/>.      pas le cas, consultez :
 *                                       <http://www.gnu.org/licenses/>.
 *
 *  $Revision: 4 $
 *
 ************************************************************************
 */
package ca.nrc.cadc.ac.server.ldap;

import java.security.AccessControlException;
import java.security.Principal;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Set;

import javax.security.auth.x500.X500Principal;

import org.apache.log4j.Logger;

Jeff Burke's avatar
Jeff Burke committed
import ca.nrc.cadc.ac.ActivatedGroup;
import ca.nrc.cadc.ac.Group;
import ca.nrc.cadc.ac.GroupAlreadyExistsException;
import ca.nrc.cadc.ac.GroupNotFoundException;
Jeff Burke's avatar
Jeff Burke committed
import ca.nrc.cadc.ac.Role;
import ca.nrc.cadc.ac.User;
import ca.nrc.cadc.ac.UserNotFoundException;
import ca.nrc.cadc.ac.server.GroupDetailSelector;
import ca.nrc.cadc.net.TransientException;
import ca.nrc.cadc.profiler.Profiler;
import ca.nrc.cadc.util.StringUtil;
import com.unboundid.ldap.sdk.AddRequest;
import com.unboundid.ldap.sdk.Attribute;
import com.unboundid.ldap.sdk.DN;
Jeff Burke's avatar
Jeff Burke committed
import com.unboundid.ldap.sdk.Filter;
import com.unboundid.ldap.sdk.LDAPConnection;
Brian Major's avatar
Brian Major committed
import com.unboundid.ldap.sdk.LDAPConnectionPool;
import com.unboundid.ldap.sdk.LDAPException;
Brian Major's avatar
Brian Major committed
import com.unboundid.ldap.sdk.LDAPInterface;
import com.unboundid.ldap.sdk.LDAPResult;
import com.unboundid.ldap.sdk.LDAPSearchException;
import com.unboundid.ldap.sdk.Modification;
import com.unboundid.ldap.sdk.ModificationType;
import com.unboundid.ldap.sdk.ModifyRequest;
import com.unboundid.ldap.sdk.ResultCode;
import com.unboundid.ldap.sdk.SearchRequest;
import com.unboundid.ldap.sdk.SearchResult;
import com.unboundid.ldap.sdk.SearchResultEntry;
import com.unboundid.ldap.sdk.SearchResultListener;
import com.unboundid.ldap.sdk.SearchResultReference;
import com.unboundid.ldap.sdk.SearchScope;
import com.unboundid.ldap.sdk.controls.ProxiedAuthorizationV2RequestControl;
import java.util.LinkedList;

public class LdapGroupDAO<T extends Principal> extends LdapDAO
{
    private static final Logger logger = Logger.getLogger(LdapGroupDAO.class);

    private static final String[] PUB_GROUP_ATTRS = new String[]
    {
    private static final String[] GROUP_ATTRS = new String[]
    {
        "entrydn", "cn", "nsaccountlock", "owner", "modifytimestamp", "description"
    };
    private static final String[] GROUP_AND_MEMBER_ATTRS = new String[]
    {
        "entrydn", "cn", "nsaccountlock", "owner", "modifytimestamp", "description", "uniquemember"
    };
    private Profiler profiler = new Profiler(LdapDAO.class);
Brian Major's avatar
Brian Major committed
    LdapConnections connections;

    private LdapUserDAO<T> userPersist;
    // this gets filled by the LdapgroupPersistence
    GroupDetailSelector searchDetailSelector;
Brian Major's avatar
Brian Major committed
    public LdapGroupDAO(LdapConnections connections, LdapUserDAO<T> userPersist)
Brian Major's avatar
Brian Major committed
        super(connections);
        if (userPersist == null)
        {
Jeff Burke's avatar
Jeff Burke committed
            throw new IllegalArgumentException(
                    "User persistence instance required");
        }
        this.userPersist = userPersist;
    }

Jeff Burke's avatar
Jeff Burke committed
    /**
     * Persists a group.
Jeff Burke's avatar
Jeff Burke committed
     * @param group The group to create
Jeff Burke's avatar
Jeff Burke committed
     * @return created group
     *
     * @throws GroupAlreadyExistsException If a group with the same ID already
Jeff Burke's avatar
Jeff Burke committed
     *                                     exists.
     * @throws TransientException If an temporary, unexpected problem occurred.
     * @throws UserNotFoundException If owner or a member not valid user.
     * @throws GroupNotFoundException
Jeff Burke's avatar
Jeff Burke committed
     */
    public Group addGroup(final Group group)
Jeff Burke's avatar
Jeff Burke committed
        throws GroupAlreadyExistsException, TransientException,
               UserNotFoundException, AccessControlException,
               GroupNotFoundException
        if (group.getOwner() == null)
        {
            throw new IllegalArgumentException("Group owner must be specified");
        }
        if (!group.getProperties().isEmpty())
        {
            throw new UnsupportedOperationException(
                    "Support for groups properties not available");
        }
        if (!isCreatorOwner(group.getOwner()))
            throw new AccessControlException("Group owner must be creator");
            Group newGroup = reactivateGroup(group);
            if ( newGroup != null)
            {
                return newGroup;
            }
            else
            {
                DN ownerDN = userPersist.getUserDN(group.getOwner());
                // add group to groups tree
                LDAPResult result = addGroup(getGroupDN(group.getID()),
                                             group.getID(), ownerDN,
                                             group.description,
                                             group.getUserMembers(),
                                             group.getGroupMembers());
                LdapDAO.checkLdapResult(result.getResultCode());
                // add group to admin groups tree
                result = addGroup(getAdminGroupDN(group.getID()),
                                  group.getID(), ownerDN,
                                  group.description,
                                  group.getUserAdmins(),
                                  group.getGroupAdmins());
                LdapDAO.checkLdapResult(result.getResultCode());
                // AD: Search results sometimes come incomplete if
                // connection is not reset - not sure why.

                // BM: commented-out this workout with introduction
                // of connection pools.  Reconnecting within a pool
                // causes an error.

                //getReadWriteConnection().reconnect();
                try
                {
                    return getGroup(group.getID());
                }
                catch (GroupNotFoundException e)
                {
                    throw new RuntimeException("BUG: new group not found");
                }
            }
        }
        catch (LDAPException e)
        {
        	logger.debug("addGroup Exception: " + e, e);
            LdapDAO.checkLdapResult(e.getResultCode());
Adrian Damian's avatar
Adrian Damian committed
            throw new RuntimeException("Unexpected LDAP exception", e);
    private LDAPResult addGroup(final DN groupDN, final String groupID,
                                final DN ownerDN, final String description,
                                final Set<User<? extends Principal>> users,
                                final Set<Group> groups)
        throws UserNotFoundException, LDAPException, TransientException,
        AccessControlException, GroupNotFoundException
    {
        // add new group
        List<Attribute> attributes = new ArrayList<Attribute>();
        Attribute ownerAttribute =
                        new Attribute("owner", ownerDN.toNormalizedString());
        attributes.add(ownerAttribute);
        attributes.add(new Attribute("objectClass", "groupofuniquenames"));
        attributes.add(new Attribute("cn", groupID));
        if (StringUtil.hasText(description))
        {
            attributes.add(new Attribute("description", description));
        }

        List<String> members = new ArrayList<String>();
        for (User<? extends Principal> userMember : users)
        {
            DN memberDN = this.userPersist.getUserDN(userMember);
            members.add(memberDN.toNormalizedString());
        }
        for (Group groupMember : groups)
        {
Dustin Jenkins's avatar
Dustin Jenkins committed
            final String groupMemberID = groupMember.getID();
            if (!checkGroupExists(groupMemberID))
Dustin Jenkins's avatar
Dustin Jenkins committed
                throw new GroupNotFoundException(groupMemberID);
Dustin Jenkins's avatar
Dustin Jenkins committed
            DN memberDN = getGroupDN(groupMemberID);
            members.add(memberDN.toNormalizedString());
        }
        if (!members.isEmpty())
        {
            attributes.add(new Attribute("uniquemember",
                (String[]) members.toArray(new String[members.size()])));
        }

        AddRequest addRequest = new AddRequest(groupDN, attributes);
        addRequest.addControl(
                new ProxiedAuthorizationV2RequestControl(
                        "dn:" + getSubjectDN().toNormalizedString()));

Brian Major's avatar
Brian Major committed
        return getReadWriteConnection().add(addRequest);
    /**
     * Checks whether group name available for the user or already in use.
     * @param group
     * @return activated group or null if group does not exists
     * @throws AccessControlException
     * @throws UserNotFoundException
     * @throws GroupNotFoundException
     * @throws TransientException
     * @throws GroupAlreadyExistsException
     */
    private Group reactivateGroup(final Group group)
Adrian Damian's avatar
Adrian Damian committed
        throws AccessControlException, UserNotFoundException,
        TransientException, GroupAlreadyExistsException
Adrian Damian's avatar
Adrian Damian committed
        try
            // check group name exists
            Filter filter = Filter.createEqualityFilter("cn", group.getID());
Adrian Damian's avatar
Adrian Damian committed

            DN groupDN = getGroupDN(group.getID());
            SearchRequest searchRequest =
                    new SearchRequest(groupDN.toNormalizedString(), SearchScope.BASE, filter,
                                      new String[] {"nsaccountlock"});

            searchRequest.addControl(
                    new ProxiedAuthorizationV2RequestControl("dn:" +
                            getSubjectDN().toNormalizedString()));
Adrian Damian's avatar
Adrian Damian committed

Brian Major's avatar
Brian Major committed
            SearchResultEntry searchResult = getReadWriteConnection().searchForEntry(searchRequest);
            if (searchResult == null)
Adrian Damian's avatar
Adrian Damian committed
            {
                return null;
            }

            if (searchResult.getAttributeValue("nsaccountlock") == null)
Adrian Damian's avatar
Adrian Damian committed
            {
                throw new GroupAlreadyExistsException("Group already exists " + group.getID());
Adrian Damian's avatar
Adrian Damian committed
            }

            // activate group
Adrian Damian's avatar
Adrian Damian committed
            {
                return modifyGroup(null, group, true);
            catch (GroupNotFoundException e)
Adrian Damian's avatar
Adrian Damian committed
            {
                throw new RuntimeException(
                        "BUG: group to modify does not exist" + group.getID());
Adrian Damian's avatar
Adrian Damian committed
        catch (LDAPException e)
        	logger.debug("reactivateGroup Exception: " + e, e);
            LdapDAO.checkLdapResult(e.getResultCode());
Adrian Damian's avatar
Adrian Damian committed
            throw new RuntimeException("Unexpected LDAP exception", e);
    /**
     * Get all group names.
     * @return A collection of strings
     * @throws TransientException If an temporary, unexpected problem occurred.
     */
    public Collection<String> getGroupNames()
        throws TransientException
            Filter filter = Filter.createNOTFilter(Filter.createPresenceFilter("nsaccountlock"));
            filter = Filter.createANDFilter(filter, Filter.create("(cn=*)"));
            final List<String> groupNames = new LinkedList<String>();
            SearchRequest searchRequest = new SearchRequest(
                    new SearchResultListener()
                    {
                        long t1 = System.currentTimeMillis();
                        public void searchEntryReturned(SearchResultEntry sre)
                        {
                            String gname = sre.getAttributeValue("cn");
                            groupNames.add(gname);
                            long t2 = System.currentTimeMillis();
                            long dt = t2 - t1;
                            if (groupNames.size() == 1)
                            {
                                logger.debug("first row: " + dt + "ms");
                                t1 = t2;
                            if ( (groupNames.size() % 100) == 0)
                            {
                                logger.debug("found: " + groupNames.size() + " " + dt + "ms");
                                t1 = t2;
                            }
                        }

                        public void searchReferenceReturned(SearchResultReference srr)
                        {
                            throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
                        }
                    }, config.getGroupsDN(), SearchScope.ONE, filter, PUB_GROUP_ATTRS);
            SearchResult searchResult = null;
            try
            {
Brian Major's avatar
Brian Major committed
                LDAPInterface con = getReadOnlyConnection();
                profiler.checkpoint("getGroupNames.getConnection");
                searchResult = con.search(searchRequest);
                profiler.checkpoint("getGroupNames.search");
            }
            catch (LDAPSearchException e)
            {
                logger.debug("Could not find groups root", e);
                LdapDAO.checkLdapResult(e.getResultCode());
                if (e.getResultCode() == ResultCode.NO_SUCH_OBJECT)
                {
                    throw new IllegalStateException("Could not find groups root");
                throw new IllegalStateException("unexpected failure", e);

            LdapDAO.checkLdapResult(searchResult.getResultCode());
            profiler.checkpoint("checkLdapResult");
            return groupNames;
        }
        catch (LDAPException e1)
        {
            logger.debug("getGroupNames Exception: " + e1, e1);
            LdapDAO.checkLdapResult(e1.getResultCode());
            throw new IllegalStateException("Unexpected exception: " + e1.getMatchedDN(), e1);
        }
    }
Jeff Burke's avatar
Jeff Burke committed
    /**
Jeff Burke's avatar
Jeff Burke committed
     * @throws GroupNotFoundException If the group was not found.
     * @throws TransientException  If an temporary, unexpected problem occurred.
Jeff Burke's avatar
Jeff Burke committed
     */
    public Group getGroup(final String groupID)
Jeff Burke's avatar
Jeff Burke committed
        throws GroupNotFoundException, TransientException,
               AccessControlException
        Group group = getGroup(getGroupDN(groupID), groupID, GROUP_AND_MEMBER_ATTRS);
        Group adminGroup = getGroup(getAdminGroupDN(groupID), null, GROUP_AND_MEMBER_ATTRS);
        group.getGroupAdmins().addAll(adminGroup.getGroupMembers());
        group.getUserAdmins().addAll(adminGroup.getUserMembers());
        return group;
    }
    // groupID is here so exceptions and loggiong have plain groupID instead of DN
    private Group getGroup(final DN groupDN, final String xgroupID, String[] attributes)
        throws GroupNotFoundException, TransientException,
Jeff Burke's avatar
Jeff Burke committed
               AccessControlException
        logger.debug("getGroup: " + groupDN + " attrs: " + attributes.length);
        String loggableGroupID = xgroupID;
        if (loggableGroupID == null)
            loggableGroupID = groupDN.toString(); // member or admin group: same name, internal tree
            Filter filter = Filter.createNOTFilter(Filter.createPresenceFilter("nsaccountlock"));

            SearchRequest searchRequest =
                    new SearchRequest(groupDN.toNormalizedString(),
                                      SearchScope.BASE, filter, attributes);
Jeff Burke's avatar
Jeff Burke committed

            searchRequest.addControl(
                    new ProxiedAuthorizationV2RequestControl("dn:" +
Jeff Burke's avatar
Jeff Burke committed
                            getSubjectDN().toNormalizedString()));

Brian Major's avatar
Brian Major committed
            SearchResultEntry searchEntry = getReadOnlyConnection().searchForEntry(searchRequest);
                String msg = "Group not found " + loggableGroupID;
                logger.debug(msg + " cause: null");
                throw new GroupNotFoundException(loggableGroupID);
            Group ldapGroup = createGroupFromEntry(searchEntry, attributes);
            if (searchEntry.getAttributeValues("uniquemember") != null)
                for (String member : searchEntry.getAttributeValues("uniquemember"))
                    DN memberDN = new DN(member);
                    if (memberDN.isDescendantOf(config.getUsersDN(), false))
                            user = userPersist.getX500User(memberDN);
                            // ignore as we do not cleanup deleted users
                            // from groups they belong to
                    }
                    else if (memberDN.isDescendantOf(config.getGroupsDN(), false))
                    {
                        try
                            ldapGroup.getGroupMembers().add(getGroup(memberDN, null, PUB_GROUP_ATTRS));
                            // ignore as we are not cleaning up
                            // deleted groups from the group members
                    else
                    {
                        throw new RuntimeException(
                            "BUG: unknown member DN type: " + memberDN);
                    }
            return ldapGroup;
        }
        catch (LDAPException e1)
        {
            logger.debug("getGroup Exception: " + e1, e1);
            LdapDAO.checkLdapResult(e1.getResultCode());
            throw new RuntimeException("BUG: checkLdapResult didn't throw an exception");
Jeff Burke's avatar
Jeff Burke committed
    /**
     * Modify the given group.
     *
Adrian Damian's avatar
Adrian Damian committed
     * @param group The group to update. It must be an existing group
Jeff Burke's avatar
Jeff Burke committed
     * @return The newly updated group.
Jeff Burke's avatar
Jeff Burke committed
     * @throws GroupNotFoundException If the group was not found.
     * @throws TransientException If an temporary, unexpected problem occurred.
     * @throws AccessControlException If the operation is not permitted.
     * @throws UserNotFoundException If owner or group members not valid users.
     */
    public Group modifyGroup(final Group group)
Jeff Burke's avatar
Jeff Burke committed
        throws GroupNotFoundException, TransientException,
               AccessControlException, UserNotFoundException
        Group existing = getGroup(group.getID()); //group must exists first
        return modifyGroup(existing, group, false);
Jeff Burke's avatar
Jeff Burke committed
    }
    private Group modifyGroup(final Group existing, final Group group, boolean withActivate)
Jeff Burke's avatar
Jeff Burke committed
        throws UserNotFoundException, TransientException,
Adrian Damian's avatar
Adrian Damian committed
               AccessControlException, GroupNotFoundException
Jeff Burke's avatar
Jeff Burke committed
    {
Adrian Damian's avatar
Adrian Damian committed
        if (!group.getProperties().isEmpty())
Jeff Burke's avatar
Jeff Burke committed
            throw new UnsupportedOperationException(
                    "Support for groups properties not available");
Adrian Damian's avatar
Adrian Damian committed
        List<Modification> mods = new ArrayList<Modification>();
        List<Modification> adminMods = new ArrayList<Modification>();
        if (withActivate)
Adrian Damian's avatar
Adrian Damian committed
            mods.add(new Modification(ModificationType.DELETE, "nsaccountlock"));
            adminMods.add(new Modification(ModificationType.DELETE, "nsaccountlock"));
Adrian Damian's avatar
Adrian Damian committed
        if (group.description == null)
Adrian Damian's avatar
Adrian Damian committed
            mods.add(new Modification(ModificationType.REPLACE, "description"));
Adrian Damian's avatar
Adrian Damian committed
        else
Adrian Damian's avatar
Adrian Damian committed
            mods.add(new Modification(ModificationType.REPLACE, "description", group.description));
            Set<String> newMembers = new HashSet<String>();
            for (User<?> member : group.getUserMembers())
                DN memberDN = userPersist.getUserDN(member);
                newMembers.add(memberDN.toNormalizedString());
            for (Group gr : group.getGroupMembers())
                {
                    throw new GroupNotFoundException(gr.getID());
                }
                DN grDN = getGroupDN(gr.getID());
                newMembers.add(grDN.toNormalizedString());

            Set<String> newAdmins = new HashSet<String>();
            Set<User<? extends Principal>> existingUserAdmins = new HashSet<User<? extends Principal>>(0);
            if (existing != null)
                    existingUserAdmins = existing.getUserAdmins();
            }
            for (User<?> member : group.getUserAdmins())
            {
                    DN memberDN = userPersist.getUserDN(member);
                    newAdmins.add(memberDN.toNormalizedString());
                    if (!existingUserAdmins.contains(member))
                {
                    adminChanges = true;
                }
            Set<Group> existingGroupAdmins = new HashSet<Group>(0);
            if (existing != null)
                    existingGroupAdmins = existing.getGroupAdmins();
            }
            for (Group gr : group.getGroupAdmins())
            {
                {
                    throw new GroupNotFoundException(gr.getID());
                }

                    DN grDN = getGroupDN(gr.getID());
                    newAdmins.add(grDN.toNormalizedString());
                    if (!existingGroupAdmins.contains(gr))
                {
                    adminChanges = true;
                }
Adrian Damian's avatar
Adrian Damian committed

            mods.add(new Modification(ModificationType.REPLACE, "uniquemember",
                    (String[]) newMembers.toArray(new String[newMembers.size()])));
            adminMods.add(new Modification(ModificationType.REPLACE, "uniquemember",
                    (String[]) newAdmins.toArray(new String[newAdmins.size()])));
            // modify admin group first (if necessary)
            if (adminChanges)
            ModifyRequest modifyRequest = new ModifyRequest(getAdminGroupDN(group.getID()), adminMods);

                modifyRequest.addControl(
                        new ProxiedAuthorizationV2RequestControl(
                                "dn:" + getSubjectDN().toNormalizedString()));
Brian Major's avatar
Brian Major committed
                LdapDAO.checkLdapResult(getReadWriteConnection().modify(modifyRequest).getResultCode());
Adrian Damian's avatar
Adrian Damian committed

            // modify the group itself now
            ModifyRequest modifyRequest = new ModifyRequest(getGroupDN(group.getID()), mods);
Jeff Burke's avatar
Jeff Burke committed
            modifyRequest.addControl(
                    new ProxiedAuthorizationV2RequestControl(
                            "dn:" + getSubjectDN().toNormalizedString()));
Brian Major's avatar
Brian Major committed
            LdapDAO.checkLdapResult(getReadWriteConnection().modify(modifyRequest).getResultCode());
        }
        catch (LDAPException e1)
        {
            logger.debug("Modify Exception: " + e1, e1);
            LdapDAO.checkLdapResult(e1.getResultCode());
Adrian Damian's avatar
Adrian Damian committed
            if (withActivate)
            {
                return new ActivatedGroup(getGroup(group.getID()));
            }
            else
            {
                return getGroup(group.getID());
            }
        }
        catch (GroupNotFoundException e)
        {
            throw new RuntimeException("BUG: modified group not found (" + group.getID() + ")");
Jeff Burke's avatar
Jeff Burke committed
    /**
     * @throws GroupNotFoundException If the group was not found.
     * @throws TransientException If an temporary, unexpected problem occurred.
Jeff Burke's avatar
Jeff Burke committed
     */
    public void deleteGroup(final String groupID)
        throws GroupNotFoundException, TransientException,
               AccessControlException
        deleteGroup(getGroupDN(groupID), groupID, false);
        deleteGroup(getAdminGroupDN(groupID), groupID, true);
    }

    private void deleteGroup(final DN groupDN, final String groupID,
                             final boolean isAdmin)
        throws GroupNotFoundException, TransientException,
               AccessControlException
    {
        Group group = getGroup(groupDN, groupID, GROUP_AND_MEMBER_ATTRS);
        List<Modification> modifs = new ArrayList<Modification>();
        modifs.add(new Modification(ModificationType.ADD, "nsaccountlock", "true"));
        if (isAdmin)
            if (!group.getGroupAdmins().isEmpty() ||
                !group.getUserAdmins().isEmpty())
            {
                modifs.add(new Modification(ModificationType.DELETE, "uniquemember"));
            }
            if (!group.getGroupMembers().isEmpty() ||
                !group.getUserMembers().isEmpty())
            {
                modifs.add(new Modification(ModificationType.DELETE, "uniquemember"));
            }
        ModifyRequest modifyRequest = new ModifyRequest(groupDN, modifs);
        try
        {
            modifyRequest.addControl(
                    new ProxiedAuthorizationV2RequestControl(
                            "dn:" + getSubjectDN().toNormalizedString()));
Brian Major's avatar
Brian Major committed
            LDAPResult result = getReadWriteConnection().modify(modifyRequest);
            LdapDAO.checkLdapResult(result.getResultCode());
            logger.debug("Delete Exception: " + e1, e1);
            LdapDAO.checkLdapResult(e1.getResultCode());
            getGroup(getGroupDN(group.getID()), null, GROUP_ATTRS);
            throw new RuntimeException("BUG: group not deleted " + group.getID());
        catch (GroupNotFoundException ignore) { }
     * Obtain a Collection of Groups that fit the given query. The returned groups
     * will not include members.
     * @param userID The userID.
     * @param role Role of the user, either owner, member, or read/write.
     * @param groupID The Group ID.
     * @return possibly empty collection of Group that match the query
     * @throws TransientException  If an temporary, unexpected problem occurred.
     * @throws UserNotFoundException
     * @throws GroupNotFoundException
     */
    public Collection<Group> getGroups(final T userID, final Role role,
                                       final String groupID)
        throws TransientException, AccessControlException,
               GroupNotFoundException, UserNotFoundException
        DN userDN = null;
        try
        {
            userDN = userPersist.getUserDN(user);
        }
        catch (UserNotFoundException e)
        {
            // no anonymous searches
            throw new AccessControlException("Not authorized to search");
        }
            ret = getOwnerGroups(user, userDN, groupID);
                groupDNs = getMemberGroups(user, userDN, groupID, false);
                groupDNs = getMemberGroups(user, userDN, groupID, true);
            }
            else
                throw new IllegalArgumentException("null role");
            ret = new ArrayList<Group>();
            try
            {
                for (DN groupDN : groupDNs)
                    if (role == Role.ADMIN)
                    {
                        groupDN = new DN(groupDN.getRDNString() + "," + config.getGroupsDN());
                    }
                    try
                    {
                        Group g = createGroupFromDN(groupDN);
                        if (isDetailedSearch(g, role))
                        {
                            g = getGroup(groupDN, null, GROUP_ATTRS);
                        }
                            logger.debug("found group: " + g.getID());
                            ret.add(g);
                    }
                    catch (GroupNotFoundException e)
                    {
                        final String message = "BUG: group " + groupDN + " not found but " +
                                               "membership exists (" + userID + ")";
                        logger.error(message);
                    }
            catch (LDAPException e)
            {
                logger.debug("getGroups Exception: " + e, e);
                throw new TransientException("Error getting group", e);
            }
        logger.debug("found: " + ret.size() + "groups matching " + userID + "," + role + "," + groupID);
        return ret;
    // some pretty horrible hacks to avoid querying LDAP for group details...
    private Group createGroupFromDN(DN groupDN)
    {
        String cn = groupDN.getRDNString();
        String[] parts = cn.split("=");
        if (parts.length == 2 && parts[0].equals("cn"))
        throw new RuntimeException("BUG: failed to extract group name from " + groupDN.toString());
    private boolean isDetailedSearch(Group g, Role r)
    {
        if (searchDetailSelector == null)
            return true;
        return searchDetailSelector.isDetailedSearch(g, r);
    }
    // end of horribleness

    protected Collection<Group> getOwnerGroups(final User<T> user,
                                            final DN userDN,
                                            final String groupID)
        throws TransientException, AccessControlException
Jeff Burke's avatar
Jeff Burke committed
    {
        Collection<Group> ret = new ArrayList<Group>();
Jeff Burke's avatar
Jeff Burke committed
        try
            Filter filter = Filter.createNOTFilter(Filter.createPresenceFilter("nsaccountlock"));

            filter = Filter.createANDFilter(filter,
                Filter.createEqualityFilter("owner", userDN.toNormalizedString()));
Jeff Burke's avatar
Jeff Burke committed
            if (groupID != null)
            {
                filter = Filter.createANDFilter(filter,
                    Filter.createEqualityFilter("entrydn", groupDN.toNormalizedString()));
Jeff Burke's avatar
Jeff Burke committed
            }
Jeff Burke's avatar
Jeff Burke committed
            SearchRequest searchRequest =  new SearchRequest(
                    config.getGroupsDN(), SearchScope.SUB, filter, GROUP_ATTRS);
Jeff Burke's avatar
Jeff Burke committed
            searchRequest.addControl(
                    new ProxiedAuthorizationV2RequestControl("dn:" +
Jeff Burke's avatar
Jeff Burke committed
                            getSubjectDN().toNormalizedString()));
Brian Major's avatar
Brian Major committed
            SearchResult results = getReadOnlyConnection().search(searchRequest);
Jeff Burke's avatar
Jeff Burke committed
            for (SearchResultEntry result : results.getSearchEntries())
            {
                ret.add(createGroupFromEntry(result, GROUP_ATTRS));
Jeff Burke's avatar
Jeff Burke committed
            }
        }
        catch (LDAPException e1)
        {
            logger.debug("getOwnerGroups Exception: " + e1, e1);
            LdapDAO.checkLdapResult(e1.getResultCode());
Jeff Burke's avatar
Jeff Burke committed
        }
        return ret;
    private Group createGroupFromEntry(SearchResultEntry result, String[] attributes)
        throws LDAPException, TransientException
    {
        if (result.getAttribute("nsaccountlock") != null)
        {
            throw new RuntimeException("BUG: found group with nsaccountlock set: " + result.getAttributeValue("entrydn").toString());
        String entryDN = result.getAttributeValue("entrydn");
        String groupName = result.getAttributeValue("cn");
        if (attributes == PUB_GROUP_ATTRS)
            return new Group(groupName);
        DN ownerDN = result.getAttributeValueAsDN("owner");
        if (ownerDN == null)
            throw new AccessControlException(groupName);
            User owner = userPersist.getX500User(ownerDN);
            if (result.hasAttribute("description"))
                g.description = result.getAttributeValue("description");
            if (result.hasAttribute("modifytimestamp"))
                g.lastModified = result.getAttributeValueAsDate("modifytimestamp");
            return g;
        }
        catch(UserNotFoundException ex)
        {
            throw new RuntimeException("Invalid state: owner does not exist: " + ownerDN + " group: " + entryDN);
        }
Jeff Burke's avatar
Jeff Burke committed
    }

    protected Collection<DN> getMemberGroups(final User<T> user,
                                             final DN userDN,
                                             final String groupID,
                                             final boolean isAdmin)
Jeff Burke's avatar
Jeff Burke committed
        throws TransientException, AccessControlException,
               GroupNotFoundException, UserNotFoundException
    {
Jeff Burke's avatar
Jeff Burke committed
        Collection<DN> groupDNs = new HashSet<DN>();
Jeff Burke's avatar
Jeff Burke committed
        if (groupID != null)
        {
            DN groupDN;
            if (isAdmin)
Jeff Burke's avatar
Jeff Burke committed
            {
                groupDN = getAdminGroupDN(groupID);
Jeff Burke's avatar
Jeff Burke committed
            }
            else
                groupDN = getGroupDN(groupID);
            if (userPersist.isMember(user.getUserID(),
                                     groupDN.toNormalizedString()))
Jeff Burke's avatar
Jeff Burke committed
            {
Jeff Burke's avatar
Jeff Burke committed
                groupDNs.add(groupDN);
Jeff Burke's avatar
Jeff Burke committed
            }
            Collection<DN> memberGroupDNs =
                    userPersist.getUserGroups(user.getUserID(), isAdmin);
Jeff Burke's avatar
Jeff Burke committed
            groupDNs.addAll(memberGroupDNs);
Jeff Burke's avatar
Jeff Burke committed
        }
Jeff Burke's avatar
Jeff Burke committed
        return groupDNs;
Jeff Burke's avatar
Jeff Burke committed
    }
    protected DN getGroupDN(final String groupID) throws TransientException
    {
        try
        {
            return new DN("cn=" + groupID + "," + config.getGroupsDN());
        }
        catch (LDAPException e)
        {
            logger.debug("getGroupDN Exception: " + e, e);
            LdapDAO.checkLdapResult(e.getResultCode());
        }
        throw new IllegalArgumentException(groupID + " not a valid group ID");
    }
    protected DN getAdminGroupDN(final String groupID) throws TransientException