mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

coulbeck
27.05.2007 6932146c7ce6be2b604fd68d4ae6450ce784a80f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License, Version 1.0 only
 * (the "License").  You may not use this file except in compliance
 * with the License.
 *
 * You can obtain a copy of the license at
 * trunk/opends/resource/legal-notices/OpenDS.LICENSE
 * or https://OpenDS.dev.java.net/OpenDS.LICENSE.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at
 * trunk/opends/resource/legal-notices/OpenDS.LICENSE.  If applicable,
 * add the following below this CDDL HEADER, with the fields enclosed
 * by brackets "[]" replaced with your own identifying information:
 *      Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 *
 *
 *      Portions Copyright 2007 Sun Microsystems, Inc.
 */
 
package org.opends.server.authorization.dseecompat;
 
import static org.opends.server.messages.AciMessages.*;
import static org.opends.server.authorization.dseecompat.Aci.*;
import static org.opends.server.messages.MessageHandler.getMessage;
import org.opends.server.types.*;
import org.opends.server.api.Group;
import org.opends.server.core.GroupManager;
import org.opends.server.core.DirectoryServer;
 
import java.util.LinkedList;
import java.util.Iterator;
import java.util.List;
import java.util.LinkedHashSet;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
 
/**
 * A class representing a roledn bind rule keyword. This class is almost
 * an exact copy of groupDN, except for variable names and error messages.
 */
public class RoleDN  implements KeywordBindRule {
 
    /*
     * List of DNs parsed from the ACI bind rule.
     */
    LinkedList<DN> roleDNs=null;
 
    /*
     * The bind rule type of the RoleDN statement.
     */
    private EnumBindRuleType type=null;
 
    /*
     * Group manager needed by the class.
     */
    private static GroupManager groupManager =
                           DirectoryServer.getGroupManager();
 
    /**
     * Constructor creating a class representing a roledn keyword of a bind
     * rule.
     * @param type An enumeration of the type of the bind rule.
     * @param roleDNs A list of the role dns parsed from the expression string.
     */
    private RoleDN(EnumBindRuleType type, LinkedList<DN> roleDNs ) {
        this.roleDNs=roleDNs;
        this.type=type;
    }
 
    /**
     * Decodes an expression string representing an roledn bind rule.
     * @param expr A string representation of the bind rule.
     * @param type An enumeration of the type of the bind rule.
     * @return A keyword bind rule class that can be used to evaluate
     * this bind rule.
     * @throws AciException If the expression is invalid.
     */
    public static KeywordBindRule decode(String expr, EnumBindRuleType type)
            throws AciException {
        if (!Pattern.matches(GroupDN.LDAP_URLS, expr)) {
            int msgID = MSGID_ACI_SYNTAX_INVALID_ROLEDN_EXPRESSION;
            String message = getMessage(msgID, expr);
            throw new AciException(msgID, message);
        }
        LinkedList<DN>roleDNs=new LinkedList<DN>();
        int ldapURLPos = 1;
        Pattern ldapURLPattern = Pattern.compile(LDAP_URL);
        Matcher ldapURLMatcher = ldapURLPattern.matcher(expr);
        while (ldapURLMatcher.find()) {
            String value = ldapURLMatcher.group(ldapURLPos).trim();
            try {
                DN dn=LDAPURL.decode(value, true).getBaseDN();
                roleDNs.add(dn);
            } catch (DirectoryException ex) {
                int msgID = MSGID_ACI_SYNTAX_INVALID_ROLEDN_URL;
                String message = getMessage(msgID, ex.getErrorMessage());
                throw new AciException(msgID, message);
            }
        }
        return new RoleDN(type, roleDNs);
    }
 
 
    /**
     * Performs the evaluation of a roledn bind rule based on the
     * evaluation context passed to it. The method uses an exact copy
     * evaluation method as the groupDN.evaluate().  The evaluation stops when
     * there are no more group DNs to evaluate, or if a group DN evaluates to
     * true if it contains the authorization DN.
     * @param evalCtx  An evaluation context to use  in the evaluation.
     * @return  Enumeration evaluation result.
     */
    public EnumEvalResult evaluate(AciEvalContext evalCtx) {
        EnumEvalResult matched = EnumEvalResult.FALSE;
       Iterator<DN> it=roleDNs.iterator();
        for(; it.hasNext() && matched != EnumEvalResult.TRUE;) {
            DN groupDN=it.next();
            Group group = groupManager.getGroupInstance(groupDN);
            if(evalCtx.isMemberOf(group))
               matched = EnumEvalResult.TRUE;
        }
        return matched.getRet(type, false);
    }
 
       /**
     * Performs an evaluation of a group that was specified in an attribute
     * type value of the specified entry and attribute type. Each
     * value of the attribute type is assumed to be a group DN and evaluation
     * stops when there are no more values or if the group DN evaluates to
     * true if it contains the client DN.
     * @param e The entry to use in the evaluation.
     * @param evalCtx  The evaluation context to use in the evaluation.
     * @param attributeType The attribute type of the entry to use to get the
     * values for the groupd DNs.
     * @return Enumeration evaluation result.
     */
    public static EnumEvalResult evaluate (Entry e, AciEvalContext evalCtx,
                                           AttributeType attributeType) {
        EnumEvalResult matched= EnumEvalResult.FALSE;
        List<Attribute> attrs = e.getAttribute(attributeType);
        LinkedHashSet<AttributeValue> vals = attrs.get(0).getValues();
        for(AttributeValue v : vals) {
            try {
                DN groupDN=DN.decode(v.getStringValue());
                Group group = groupManager.getGroupInstance(groupDN);
                if((group != null) && (evalCtx.isMemberOf(group))) {
                    matched=EnumEvalResult.TRUE;
                    break;
                }
            } catch (DirectoryException ex) {
                break;
            }
        }
        return matched;
    }
}