Grouper Provisioning: PSPNG (Legacy)

Grouper Provisioning: PSPNG (Legacy)

 There is a new Grouper Provisioning Framework, released with Grouper 2.6 and above.
This page on PSPNG is no longer current as of 2022.

 

Provisioning's job is to reflect groups and their memberships in other systems. This is handled in Grouper via the PSPNG component, which is mostly a client of the Grouper changelog and is designed as a ChangeLog Consumer (CLC). Detected changes in Grouper via the changelog are picked by PSPNG and evaluated for provisioning operations selectively.

 

History

Over the years, dozens of provisioners have been created -- some focused on a single destination type and others with some generic functionality combined with a very wide variety of options and capabilities.

Starting in 2014, the Grouper Team and Users concluded that the provisioning priorities should change: less flexibility and increased simplicity and performance. The Next Generation of the Grouper Provisioning Service Provider (aka PSPNG) was defined in Post PSP Provisioning .

As of  Grouper 2.6 and above the PSPNG is no longer used. Please see Grouper Provisioning Framework documentation  

 

Development Status and Features

PSPNG's general structure should be ready to provision various targets, but its current implementation is limited to provisioning LDAP targets like:

  • -(Unix) LDAP Groups: (GroupOfUniqueNames, GroupOfNames, PosixGroup)

  • -Active Directory Groups

  • -LDAP Attributes (like eduPersonEntitlement)

Configuration

PSPNG's Configuration is done via the conf/grouper-loader.properties file, in the grouper API Binary, with a paragraph for each provisioning destination, as well as an additional paragraph that enables and configures FullSync operation. There are several configuration options documented in the following spreadsheet:

 

Provisioner Type

Parameter

Default

Description

Default Behavior

All Provisioners

provisionerName

<required>

 

 

 

enabled

true

Whether the provisioner will make changes. When this is false, the provisioner skips all changelog or full-sync requests.

The provisioner reflects changes in Grouper downstream to the target system.

 

groupSelectionExpression

${

utils.containedWithin(provisionerName,
stemAttributes['etc:pspng:provision_to'],
groupAttributes['etc:pspng:provision_to'])

&&
!utils.containedWithin(provisionerName,
stemAttributes['etc:pspng:do_not_provision_to'],
groupAttributes['etc:pspng:do_not_provision_to'])

}

Jexl expression that refers to stem_attributes, group_attributes, or group

Provision groups if <provisionerName> is in a group or stem provision_to attribute AND NOT in a do_not_provision_to attribute

 

attributesUsedInGroupSelectionExpression

etc:pspng:provision_to, etc:pspng:do_not_provision_to

List of Grouper Attributes used in group selection. Used to improve the speed of finding relevant groups.

Use the groupSelectionExpression against groups either with provision_to/do_not_provision_to Attributes or in folders with those attributes.

 

attributesUsedInGroupSelectionExpressionAreComparedToProvisionerName

true

True: the values of the attributes listed in attributesUsedInGroupSelectionExpression are the provisioner names.

False: The attributes listed in attributesUsedInGroupSelectionExpression have different values than the provisioner.

PSPNG does a database search for Attribute=<provisioner name> which narrows the number of groups to compare to the groupSelectionExpression.

 

grouperDataCacheTime_secs

600 (seconds)

How long should Grouper (Group, Stem, Subject) data be cached by the provisioners?

Grouper data will be cached for 10 minutes, though it is flushed when groups change.

 

grouperGroupCacheSize

10000 (Groups)

How many Grouper Groups should be kept in memory at a time?

 

 

grouperSubjectCacheSize

10000 (Subjects)

How many Grouper Subjects should be kept in memory at a time?

 

 

needsTargetSystemUsers

FALSE

Does provisioniner need User/Subject information from the Target System? For example, do any JEXL expressions need information that is not available in Grouper Subjects?

All provisioning will be done based (only) on Grouper-Subject information.

 

needsTargetSystemGroups

FALSE

Does provisioner need group information from the Target System? For example, this information could be used in various JEXL expressions.

All provisioning will need to be done based on Grouper-Group information

 

createMissingUsers

FALSE

Only used when needsTargetSystemUsers=true: Should users be created when they cannot be found?

Users will not be created by Grouper Provisioning. Provisioning actions that require the users will fail.

 

userSearch_batchSize

50

Only used when needsTargetSystemUsers=true: How many users can be sought in a single Fetch?

Fetches will seek information for up to 50 users at a single time.

 

groupSearch_batchSize

50

Only used when needsTargetSystemGroups=true: How many groups can be sought in a single Fetch?

Fetches will seek information for up to 50 groups at a time.

 

supportsEmptyGroups

TRUE

Can groups be created without any members? If so, it is easier to create them separately from membership changes.

Yes, create groups as soon as possible.

 

sleepTimeAfterError_ms

1000

FullSync: Wait a bit before retrying a group that has failed. This prevents aggressive infinite loops.

1 second pause before retrying a failed group.

LdapProvisioner (Abstract)

ldapPoolName

<required>

What ldap pool should be used by this provisioner

 

 

userSearchBaseDn

null

Where to find users?

Required if provisioner needsTargetSystemUsers=true

 

userSearchFilter

null

Jexl expression that refers to stem_attributes, group_attributes, or group

How to find users in the Target System?

 

userSearchAttributes[]

dn,cn,uid,mail,
samAccountName,uidNumber,
objectclass

Comma-separated list of attributes that are useful for logging and that are needed by userSearchFilter or by a subclass's ValueFormats

Reads common attributes from either Unix or ActiveDirectory LDAP servers

 

searchResultPagingEnabled

TRUE

Whether paging should be enabled in LDAP search requests; This typically requires the paging extension to be enabled and configured in LDAP to avoid LDAP Error Code 12.

TRUE

 

ldapSearchResultPagingSize

100

How many result objects can be pulled by a single request. This is small to avoid problems by default.

Break the results of a large query into fairly tiny chunks.

 

ldapUserCacheTime_secs

600

How long to keep User information in memory?

Keep User information in memory for 10 minutes, though user-information is flushed when users are changed by a provisioner

 

ldapUserCacheSize

10000

Deprecated: use the more general targetSystemUserCacheSize.

How many LDAP accounts can be kept in memory at a time, indexed by the Subject mapped to them?

Keep the last 10000 users found by searching with Subject information

 

isActiveDirectory

FALSE

Is this an active-directory server? If so, then AD-specific attribute-value-paging is enabled. Also, member (reverse user-to-group virtual attribute) is enabled.

LDAP server is treated like a non-active-directory server. Problems will occur with full-sync of large groups.

 

maxValuesToChangePerOperation

100

How many values can be added/removed from an attribute in a single ldap operation

Breaks large list of values that need to be added/removed from an attribute into chunks that this size. For example, 5000 values that need to be added would be added in 50 chunks of 100 values each.

 

targetSystemUserCacheSize

10000

 

 

 

userCreationBaseDn

null

Warning: Grouper PSPNG is not a good provisioner for Accounts/Subjects. See 'Account Creation' section below.

Where should account-/subject-objects be created when they don't already exist?

This is only used if createMissingUsers=true

This is appended to the dn attribute produced by the userCreationLdifTemplate.

 

userCreationLdifTemplate

null

Warning: Grouper PSPNG is not a good provisioner for Accounts/Subjects. See 'Account Creation' section below.

What account/subject ldap objects should be created when they don't already exist in the LDAP directory?

This is only used if createMissingUsers=true

 

LdapGroupProvisioner (Also Provisioner and LDAPProvisioner)

memberAttributeName

'member' for AD

<required> otherwise

What attribute represents a group's members in the Target System?

Active Directory should just work. Otherwise, this is required.

 

memberAttributeValueFormat

${ldapUser.dn}

What value (typically based on Subject or TargetSystemUser information) is written into the memberAttributeName attribute of groups?

Active Directory and GroupOfUniqueNames will typically work. This is a JEXL expression and is parsed at runtime. You may choose to script your way into this, by perhaps choosing a specific attribute:

${ldapUser.getStringValue("uid")}

 

groupAttributeName

memberof for AD

null otherwise

Virtual attribute of accounts that lists their groups

 

 

groupCreationLdifTemplate

null

What LDIF should be written to the directory to add a group. Multiple lines need to be separated by || (double-pipes). The DN of the LDIF will be combined with groupCreationBaseDn>

For AD, limit to less than 1024 if sending description, like this:

description: ${org.apache.commons.lang3.StringUtils.abbreviate(group.description == null ? null : group.description.replaceAll("\\r\\n"," ").replaceAll("\\n"," ").replaceAll("\\r"," "), 900)}

 

groupCreationBaseDn

<groupSearchBaseDn>

Where should groups be created? At group-creation time, this is appended to the DN that results from the groupCreationLdifTemplate.

Groups are created starting at the top of the search BaseDn.

 

groupSearchBaseDn

<required>

Where are groups found?

 

 

grouperIsAuthoritative

FALSE

If set to TRUE, groups under groupCreationBaseDn that are not in Grouper will be removed at the end of a full sync.

During full syncs, groups are not removed if they do not match the allGroupsSearchFilter or groupSelectionExpression.

 

allGroupsSearchFilter

null

FUTURE: How to find all the groups that grouper-provisioning maintains. If <grouperIsAuthoritative>, then groups found via this filter will be removed during a full sync.

Groups are not removed when they are removed from Grouper nor when they no longer match the groupSelectionExpression.

 

singleGroupSearchFilter

<required>

How to find a group, based on Grouper Group (or stem) information

 

 

groupSearchAttributes

cn,gidNumber,samAccountName,objectclass

Attributes that should be read from groups when searching for them. This needs to include all the attributes used in singleGroupSearchFilter. This should not include the attribute which holds the group's members.

Support common, basic singleGroupSearchFilters.

 

ldapGroupCacheTime_secs

600

How long should LDAP-Group information be cached in memory?

Keep LDAP Group information in memory for 10 minutes, though it is flushed when users are changed by a provisioner.

 

ldapGroupCacheSize

10000

How many LDAP groups to keep in memory, indexed by Grouper Group.

 

 

needsTargetSystemUsers

TRUE

See above (JEXL expressions use User and Group information from the Target System)

 

 

needsTargetSystemGroups

TRUE

See above (JEXL expressions use User and Group information from the Target System)

 

 

allowEmptyDnAttributeValues

FALSE

v2.5.51+  Set true to allow attributes that require DN syntax to be empty in order to support use of the null DN (also known as the zero-length DN).

By doing so the PSP-NG is able to provision an "empty" group with objectClass groupOfNames and the attribute 'member' with no value (the null DN)

false, remove the attribute with no value from the LDIF before creating the group

 

removeNullDnFromGroupLdifCreationTemplate

FALSE

v2.5.51+ Set true so that LDIF from the group creation LDIF template is filtered and the membership attribute (e.g. member) with a null DN is removed before the LDIF is used to compare an existing group in the LDAP directory with the computed LDIF. 

This can be used with a group creation LDIF template that does include the member attribute with null DN to support the objectClass groupOfNames and provisioning of empty groups.

false, no filtering of the group creation LDIF is done to remove a membership attribute with a null DN.

LdapAttributeProvisioner
(Also Provisioner and LDAPProvisioner)

provisionedAttributeName

<required>

What attribute is changed in User LDAP objects to represent group membership?

 

 

provisionedAttributeValueFormat

${group.name}

What value (typically based on Subject or TargetSystemUser information) is written into the provisionedAttributeName users?

The stem:Group name is written to the attribute specified in <provisionedAttributeName>

 

needsTargetSystemUsers

TRUE

See above (JEXL expressions only use User information from the Target System)

 

 

needsTargetSystemGroups

FALSE

See above (JEXL expressions only use User information from the Target System)

 

 

allProvisionedValuesPrefix

null

What values of the attribute is grouper authoritative for during a full sync? null (default) or empty means that pspng will only process removals as memberships change, and won't clean up unknown attribute values.

Warning: Grouper should have full control over the target attribute to avoid complications that come from sharing attributes with multiple provisioning tools.

PSPNG JEXL object notations

JEXL Syntax

Description

Example string

${group.name}

This will return the full grouper "name" for the group that is part of the event.

folderA:folderB:FolderC:GroupDisplayName

${ldapUser.getStringValue("uid")}

This will return an attribute from the LDAP user ( that is likely found via a search during the event )

Depends on the data in the connected Ldap service.

 

LDAP Properties

 

LDAP configuration is done based on the ldaptive library's property configuration. A paragraph of ldap configuration is created in grouper-loader.properties for each LDAP endpoint, and that paragraph is referenced by the appropriate provisioners.  Comments in grouper-loader.base.properties refers to these "LDAP pools" as "LDAP connections".  

 

Targeting Active Directory

Where Active Directory is the target environment, make sure you are pointing to a FQDN with active/standby load balancing or to a primary node.  Other forms of load balancing can lead to inconsistent results or AD conflict CNF objects.

 

At this time, the LDAP bindCredential cannot be encrypted via the Grouper morphstring.

ldap.groupOfNames.ldapUrl = ldaps: //hostname

ldap.groupOfNames.bindDn = cn=xxxxxx,ou=xxxxx

ldap.groupOfNames.bindCredential = xxxxx

ldap.groupOfNames.someOtherLdapProperty = value

# in another paragraph a provisioner is associated with the LDAP pool name

changeLog.consumer.pspng_groupOfUniqueNames.ldapPoolName = groupOfNames

 

Advanced Ldaptive Properties

PSPNG relies on the Ldaptive library for all LDAP-related operations. To learn more about what other LDAP properties are available,  one simple example can be found here. Moving into more realistic examples will probably be helped by looking at the ldaptive configuration classes and the setters available within them: connectionspooling, binding (sasl, gssapix509, jks, etc).

In case it is helpful, this is currently implemented here. You may also wish to take a look at GRP-1306 to learn more about the differences between vtdap (the previously used LDAP library) vs ldaptive.

Run PSPNG

PSPNG runs as part of the grouper loader. So simply run the loader with:

cd <grouper-api-binary-folder>/bin ./gsh -loader

Group/Folder Selection

Groups can be enabled and disabled based on Group or Folder/Stem information and attributes. By default, two multivalued attributes are used:

Attribute Definition

Attribute Name

Description

etc:pspng:provision_to_def

etc:pspng:provision_to

Enable downstream provisioning

etc:pspng:do_not_provision_to_def

etc:pspng:do_not_provision_to

Disable downstream provisioning

The groupSelectionExpression can be modified to look at different group characteristics or group/folder attributes. If you replace the default provision_to/do_not_provision_to expression with an expression that does not reference Grouper Attributes, you'll need to still put provision_to on the parent folder(s) of the groups you wish to provision. GRP-1903 will fix this so you'll be able to set attributesUsedInGroupSelectionExpression to an empty value. If you use an expression that uses other Attributes, then make sure attributesUsedInGroupSelectionExpression is a comma-separated list of the attributes you need.


How do I create PSPNG attribute definitions?

These attribute definitions are auto-created by Grouper the very first time PSPNG runs. If you have configured PSPNG to run on startup, then the attributes will be created then or else you may need to wait for the scheduled PSPNG job to kick in.

If you need to, you can always create these via the Grouper Shell. 

Comments