I found the documentation for the display authrec match(…) command hard to understand. There are ambiguous backward references (the profile … which profile?), too many ‘and’s, and I think some ‘or’s are missing. Below is how I interpret it.
- Match exact: Select the record where the specified profile name specified is an exact match for a setmqauth record
- Match profile: Display the setmqaut records which would be used to compute permissions, for the specified profile, and (specified userid or specified group).
- Match membership:
- For the specified userid do Match: profile() for the userid
- For each group the specified userid is in, do Match: profile() for that group
I see the processing is in two stages
- Stage 1 extract the autrecs for the specified profile name
- Stage 2 filter the list using the specified userid or group.
Stage 1: extract the authrecs matching the specified profile name.
For match exact
Select the record where the specified profile name specified is an exact match for a setmqauth record. Profile(‘CP.**.99’) will match only ‘CP.**.99’.
For match profile and membership
If the specified profile has a generic then treat this as match(exact).
If the specified profile has no generics then extract all records which would apply when checking this profile.
For example for queue CP.AA.BB.99 might return
- profile CP.AA.BB.99 (entity colinpaice) – this userid created the queue
- profile CP.AA.BB.99 (entity mqm) – this entry is create when the queue is created
profile CP.**.99 (entity testuser) – this was done via setmqaut– not selected because less specific generic profile- profile CP.*.BB.99 (entity testuser) – this was done via setmqaut.
Stage 2. Filter the records depending on the specified userid or group.
Take the set of records from stage 1 and filter them. You can specify the principal (userid) or group. Note: If your qm.ini has SecurityPolicy=group then even if you have specified you setmqauth with a userid, it will use a group instead. This may mean that displaying a userid may give no results.
Match exact
Compare the specified entity and entity type with those in the the records. If they match display the record.
Match profile
Compare the specified entity, and entity type with those in the the records. If they match display the record.
Match membership
Compare the specified entity, and entity type with those in the the records. If they match display the record.
If the entity type in the record is group, and the specified userid is a member of the group then display it.
Examples
Match(profile) principal()
dis authrec profile(CP.AA.99) objtype(queue) match(profile) principal('testuser') AMQ8459I: Not found.
There is no profile defined for the userid ‘testuser’
Match(profile) group()
dis authrec profile(CP.AA.99) objtype(queue) match(profile) group('testuser') PROFILE(CP.*.99) ENTITY(testuser)
There was a setmqauth -m -n “CP.*.99” -t queue -p testuser +get . Because of the qm.ini setting, and userid authorisations were converted to group authorisations. On some Unix systems, when a userid is created, it creates a group with the same name, and connects the userid to the group.
dis authrec profile(CP.AA.99) objtype(queue) match(profile) group('test') AMQ8864I: Display authority record details. PROFILE(**) ENTITY(test) AUTHLIST(DSP,INQ)
All members of group test, have Display and Inquire permissions on any queue.
Match(membership) principal()
dis authrec profile(CP.AA.99) objtype(queue) match(membership) principal('testuser') AMQ8864I: Display authority record details. PROFILE(CP.*.99) ENTITY(testuser) AMQ8864I: Display authority record details. PROFILE(**) ENTITY(test)
The display match(membership) combines all of the above. Any specific records, plus records for any group testuser is in.
Match(membership) group()
dis authrec profile(CP.AA.99) objtype(queue) match(membership) group('testuser') AMQ8864I: Display authority record details. PROFILE(CP.*.99) ENTITY(testuser)
Because the group is specified, then this acts the same as match(profile) group(‘testuser’).
Match(profile) no group nor principal
dis authrec profile(CP.AA.99) objtype(queue) match(profile) AMQ8864I: Display authority record details. PROFILE(CP.AA.99) ENTITY(colinpaice) AMQ8864I: Display authority record details. PROFILE(CP.AA.99) ENTITY(mqm) AMQ8864I: Display authority record details. PROFILE(CP.*.99) ENTITY(testuser) AMQ8864I: Display authority record details. PROFILE(CP.**.99) ENTITY(testuser) AMQ8864I: Display authority record details. PROFILE(**) ENTITY(test)
No userids or groups were specified, so all relevant autrecs for the profile CP.AA.99 are displayed.
Observation: There is a profile for PROFILE(CP.**.99) ENTITY(testuser) which does not show up when dis authrec profile(CP.AA.99) objtype(queue) match(membership) principal(‘testuser’) is used.
This is because with generic profiles, only the most specific generic profile is used, see Profile Priorities.
SecurityPolicy=group is the default even if the setting is not present in the qm.ini.
LikeLike