Enabling single sign on for extending services via PassTicket configuration
Enabling single sign on for extending services via PassTicket configuration
One option to enable single sign-on (SSO) to your extending REST API services is to configure Zowe API ML PassTickets. Passtickets are encoded and encrypted and are only valid for a few minutes after you generate them. PassTickets enable z/OS components and products to authenticate a user ID without storing or caching z/OS passwords or sending the passwords through the network. Follow the procedures described in this article to configure Zowe to use PassTickets, and to enable Zowe to use PassTickets to authenticate towards specific extending services.
Overview of PassTickets
API clients can use various supported methods to access an API service such as a Zowe JWT token or a client certificate even if the API service itself does not support the JWT token or a client certificate. An intermediary for support of JWT or a client certificate can be through the use of PassTickets.
When an API client provides a valid authentication method to API ML, the API Gateway generates a valid PassTicket for any API service that supports PassTickets. A PassTicket is a one-time only password that is generated for a specific user ID. The API Gateway uses the PassTicket to access that API service. The API Gateway provides the user ID and password in the Authorization header which serves as basic authentication in HTTP requests using the Basic authentication scheme.
Configuring Zowe to use PassTickets
Configuring Zowe to use PassTickets involves two processes:
- Enabling the use of PassTickets in your External Security Manager (ESM)
- Configuring security to allow the Zowe API Gateway to generate PassTickets for an API service
Enabling the use of PassTickets in your External Security Manager (ESM)
Since the Zowe 2.17 release, it is no longer necessary to disable replay protection. If you are upgrading Zowe from a prior release, these protections can be activated again. For earlier Zowe versions, ensure that the API service has replay protection switched off. This links a secured sign-on application key with the application.
This section applies to users who do not already have PassTickets enabled in the system, or users who need to define a PassTicket for a new APPLID. If you already have an APPLID that you intend to use to define your API service, skip to the section Configuring security to allow the Zowe API Gateway to generate PassTickets for an API service.
To validate if a PassTicket is already defined, list the APPL and PTKTDATA with a command corresponding to your ESM. Output indicates if a PassTicket is already defined. No results after issuing an ESM command indicates that a PassTicket is not defined. If a PassTicket is defined, the access of the ZWESVUSR can be determined.
Validating an existing PassTicket for ACF2 In your ESM command line interface or other security environment, execute the following commands: Issue a Replace 'APL' with the type code listed in the Verify whether PTKTDATA is defined, by executing the following commands:Click here for command details about validating an existing PassTicket for ACF2.
SHOW CLASMAP
command in TSO ACF to verify whether the APPL resource is defined in the GSO. Take note of the 3 character type code associated with APPL. If APPL does not appear in the SHOW CLASMAP
listing, run the following commands:SET CONTROL(GSO)
INSERT CLASMAP.appl RESOURCE(APPL) RSRCTYPE(APL)
F ACF2,REFRESH(CLASMAP)SHOW CLASMAP
output:SET RESOURCE(APL)
LIST LIKE(<applid>-)SET PROFILE(PTKTDATA) DIVISION(SSIGNON)
LIST LIKE(<applid>-)
SET RESOURCE(PTK)
LIST LIKE(IRRPTAUTH-)
-
A wildcard symbol that lists all resources<applid>-
Lists everything related to specified applid in a resource (in this case, SAF), or specified in a profile (in this case, PTKTDATA)
Validating an existing PassTicket for Top Secret In your ESM command line interface or other security environment, execute the following commands: If APPL and PTKTDATA are not defined yet, follow the instruction to create them as described in the Enabling PassTickets with Top Secret section.Click here for command details about validating an existing PassTicket for Top Secret.
TSS WHOHAS APPL(<applid>)
TSS WHOHAS PTKTDATA(<applid>)
TSS WHOHAS PTKTDATA(IRRPTAUTH.<applid>.)
.
A wildcard symbol that lists all resourcesIRRPTAUTH.<applid>.
Returns everything about the specified applid for IRRPTAUTH
Validating an existing PassTicket for RACF In your ESM command line interface or other security environment, execute the following commands: Ensure that you validate PTKTDATA access for APPL.Click here for command details about validating an existing PassTicket for RACF.
RLIST APPL * ALL
RLIST APPL <applid> ALL
RLIST PTKTDATA <applid> SSIGNON ALL
RLIST PTKTDATA IRRPTAUTH.<applid>.* ALL
*
A wildcard symbol that resturns all resourcesRLIST PTKTDATA <applid> SSIGNON ALL
Validates all applid for PTKDATA classRLIST PTKTDATA IRRPTAUTH.<applid>.* ALL
Validates all applid permissions for PTKDATA class
Follow these steps to enable PassTicket Support specific to your ESM.
Enabling PassTickets with ACF2
Click here for command details about configuring Zowe to use PassTickets using ACF2.
-
Issue a
SHOW CLASMAP
command in TSO ACF to to identity the 3 character type code associated with APPL. Replace 'APL' with the type code listed in theSHOW CLASMAP
output:SET RESOURCE(APL)
RECKEY <applid> ADD(UID(<user>) ALLOW)
F ACF2,REBUILD(APL) -
In your ESM command line interface or other security environment, define the application session key by entering the following commands, if the session key is not already defined.
SET PROFILE(PTKTDATA) DIV(SSIGNON)
INSERT <applid> SSKEY(<key-description>)
F ACF2,REBUILD(PTK),CLASS(P)
-
applid
Specifies the application ID used for PassTicket validation to authenticate connections to the server. -
key-description
Specifies the secured sign-on hexadecimal application key of 16 hexadecimal digits (8-byte or 64-bit key). Each application key must be the same on all systems in the configuration and the values must be kept secret and secured.
-
Complete the PassTicket setup by entering the following commands:
F ACF2,REBUILD(PTK),CLASS(P)
The PassTicket record is now active in the system.
-
Enable the started task user ID to generate PassTickets for the application by entering commands similar to the following:
SET RESOURCE(PTK)
RECKEY IRRPTAUTH ADD(applid.userid UID(<userid>) SERVICE(UPDATE,READ) ALLOW)
userid
Specifies the Zowe server user ID
You configured Zowe to use PassTickets for single sign on using ACF2.
Enabling PassTickets with Top Secret
Click here for command details about configuring Zowe to use PassTickets using Top Secret.
Before you begin this procedure, verify that the PTKTDATA
class and ownership for the PassTicket resource (IRRPTAUTH
) have not already been defined as described in the previous tip.
-
Update the resource descriptor table (RDT) to define the
PTKTDATA
class by entering the following commands:noteThe
PTKTDATA
resource is not a predefined class.TSS ADDTO(RDT) RESCLASS(PTKTDATA) RESCODE(n) ACLST(ALL,READ,UPDATE) MAXLEN(37)
The
PTKTDATA
resource is added to the RDT.noteInclude
RESCODE(n)
in the range of 101 to 13F to makePTKTDATA
a prefixed resource class. -
Assign ownership for the PassTicket resource (
IRRPTAUTH
). Execute the following commands:TSS ADDTO(<department>) PTKTDATA(IRRPTAUTH)
department
Specifies the department forPTKTDATA(IRRPTAUTH)
. The default department isTSODEPT1
.
-
Define PassTicket for application ID applid:
TSS ADDTO(NDT) PSTKAPPL(<applid>) SESSKEY(<key-description>)
-
applid
Specifies the application ID used for PassTicket validation to authenticate connections to the server. -
key-description
Specifies the secured sign-on hexadecimal application key of 16 hexadecimal digits (8-byte or 64-bit key). Each application key must be the same on all systems in the configuration and the values must be kept secret and secured.
-
Permit access to the PassTicket resource defined in the previous step for the LDAP Server by executing the following command:
TSS PERMIT(<stc-userid>) PTKTDATA(IRRPTAUTH.applid) ACCESS(UPDATE)
stc-userid
Specifies the Accessor ID (ACID) that you created when you created LDAP Server started task User IDs.
Default: CALDAP
You configured Zowe to use PassTickets using Top Secret.
Enabling PassTickets with RACF
Click here for command details about configuring Zowe to use PassTickets using RACF.
-
Activate the
PTKTDATA
class, which encompasses all profiles containing PassTicket information.In your ESM command line interface or other security environment, execute the following command:
SETROPTS CLASSACT(PTKTDATA) RACLIST(PTKTDATA)
-
Specify the application ID requiring access through PassTicket for the Zowe server with the following commands:
RDEFINE APPL <applid> UACC(READ)
SETROPTS CLASSACT(APPL)
SETROPTS GENERIC(PTKTDATA)
-
applid
Specifies the application ID used for PassTicket validation to authenticate connections to the server. (One to 8 characters)noteThis name is usually provided by the site security administrator.
-
Define the profile for the application with the following command:
RDEFINE PTKTDATA <applid> UACC(NONE) APPLDATA('NO REPLAY PROTECTION') SSIGNON(KEYMASKED(<key-description>))
key-description
Specifies the secured sign-on hexadecimal application key of 16 hexadecimal digits (8-byte or 64-bit key). Each application key must be the same on all systems in the configuration and the values must be kept secret and secured.
-
Replace
key-description
with the application name defined previously. -
Define the profile
IRRPTAUTH
inPTKTDATA
class for the<applid>
RDEFINE PTKTDATA IRRPTAUTH.<applid>.* UACC(NONE)
-
Allow the application ID (applid) to use PassTickets:
PERMIT IRRPTAUTH.applid.* CLASS(PTKTDATA) ACCESS(UPDATE) ID(userid)
userid
Specifies the value of the LDAP Server started task.
- Refresh the RACF PTKTDATA definition with the new profile:
SETROPTS RACLIST(PTKTDATA) REFRESH
You configured Zowe to use PassTickets using RACF.
Configuring security to allow Zowe API Gateway to generate PassTickets for an API service
As a security administrator, you can issue security commands to allow the Zowe started task user ID to generate PassTickets for the API service.
Specify the following variables when generating PassTickets for the API service to enable the Zowe started task user ID:
-
applid
The APPLID value used by the API service for PassTicket support (for example,OMVSAPPL
) -
zowe-user-id
The Zowe started task user ID used during the Zowe installation
In the following examples of ESM configuration, replace these variables with actual values.
Use the configuration format that corresponds to your ESM as presented in the following examples.
Generating PassTickets using ACF2
Click here for command details about generating PassTickets using ACF2.
Grant the Zowe started task user ID permission to generate PassTickets for users of the API service.
Example:
ACF
SET RESOURCE(PTK)
RECKEY IRRPTAUTH ADD(<applid>.- UID(<zowe-user-id>) SERVICE(UPDATE,READ) ALLOW)
F ACF2,REBUILD(PTK),CLASS(P)
END
Generating PassTickets using Top Secret
Click here for command details about generating PassTickets using Top Secret.
Grant the Zowe started task user ID permission to generate PassTickets for users of the API service.
Example:
TSS PERMIT(<zowe-user-id>) PTKTDATA(IRRPTAUTH.<applid>.) ACCESS(READ,UPDATE)
TSS REFRESH
Generating PassTickets using RACF
Click here for command details about generating PassTickets using RACF.
Grant the Zowe started task user ID permission to generate PassTickets for users of the API service.
Example:
RDEFINE PTKTDATA IRRPTAUTH.<applid>.* UACC(NONE)
PERMIT IRRPTAUTH.<applid>.* CL(PTKTDATA) ID(<zowe-user-id>) ACCESS(UPDATE)
SETROPTS RACLIST(PTKTDATA) REFRESH
Verifying your PassTicket Application
In your ESM command line interface or other security environment, execute the commands that correspond to your ESM:
Verifyinging PassTickets using ACF2
Click here for command details for ACF2.
ACF2:
Replace 'APL' with the type code listed in the SHOW CLASMAP
output:
SET RESOURCE(APL)
LIST LIKE(<applid>-)
SET RESOURCE(PTK)
LIST LIKE(IRRPTAUTH-)
applid
Specifies the application ID used for PassTicket validation to authenticate connections to the server
Verifyinging PassTickets using Top Secret
Click here for command details for Top Secret.
TSS:
TSS WHOHAS APPL(<applid>)
TSS WHOHAS PTKTDATA(IRRPTAUTH.<applid>)
Verifyinging PassTickets using RACF
Click here for command details for RACF.
RACF:
RLIST APPL <applid> ALL
RLIST PTKTDATA IRRPTAUTH.<applid>.* ALL
Successful execution of this validation command shows your application and the specific access of the application.
Output example:
CLASS NAME
----- ----
PTKTDATA IRRPTAUTH.ZWEADMIN.* (G)
USER ACCESS
---- ------
ZWESVUSR UPDATE
(Optional) Adding custom HTTP Auth headers to store user ID and PassTicket
If a downstream (southbound) service needs to consume the PassTicket as well as the user ID from custom headers to participate in the Zowe SSO, you can define the custom HTTP headers names as part of the Gateway configuration.
The southbound service must use the httpBasicPassTicket
scheme in order to leverage this functionality. Once the HTTP headers names are defined, each request to the southbound service contains the PassTicket and the user ID in the custom headers.
Use the following procedure to add the custom HTTP headers.
- Open the file
zowe.yaml
. - Find or add the property
components.gateway.apiml.security.auth.passticket.customAuthHeader
and set the value which represents the name of the header. - Find or add the property
components.gateway.apiml.security.auth.passticket.customUserHeader
and set the value which represents the name of the header. - Restart Zowe.
Requests through the Gateway towards the southbound service now contain the custom HTTP headers with the PassTicket and the user ID.