LDAP search filter expressions | HCL Digital Experience
The rules for rule-based user groups are based on the LDAP search filter syntax.
For information about the LDAP search filter syntax, see RFC2254 - The String Representation of LDAP Search Filters in the related links section.
You can use this subset of the LDAP search filter syntax:
- The
ANDoperator represented by an ampersand (&). - The
ORoperator represented by a vertical slash (|). - The
NOToperator represented by an exclamation mark (!). - Equality comparison represented
by an equal sign (
=) for name and value expressions. - Wildcards represented by
an asterisk (
*) at the beginning or end of values in name and value expressions.
Note: Attributes must not start with one of the operator symbols
AND, OR, or NOT (&, |, or !), and they must not contain a comparison equal sign (=),
or parentheses. For example:
(uid=testuser)- Matches to
all users that have exactly the value
testuserfor the attributeuid. (uid=test*)- Matches to all users that have values
for the attribute
uidthat start withtest. (!(uid=test*))- Matches to all users that have values
for the attribute
uidthat do not start withtest. (&(department=1234)(city=Paris))- Matches
to all users that have exactly the value
1234for the attributedepartmentand exactly the valueParisfor the attributecity. (|(department=1234)(department=56*))- Matches to
all users that have exactly the value
1234or a value that starts with56for the attributedepartment. (&(department=12*)(!(department=123*)))- Matches to all users that have a value starting with
12, but not starting with123for the attributedepartment.
Syntax validation
When you define or modify a rule base user group, the rule-based user groups adapter validates the syntax for the LDAP search filter expression. For example:
- Invalid rule specified:
- If you provide a rule that is not valid, rule-based user groups return the appropriate error message. However, it does not check whether the attribute names that you use exist in the user configuration. You can verify the configuration by using the code that calls the search filter.
- Invalid attribute specified:
- If an invalid attribute name is contained in a rule, the group membership determination for rule-based user groups does not work and logs an error. Existing rules might break if your attribute configuration in the system changes, for example, when an attribute is removed or renamed.