Giter Site home page Giter Site logo

theo-reignier / mq-ams-tutorial Goto Github PK

View Code? Open in Web Editor NEW
2.0 1.0 2.0 3.04 MB

Demonstration of how to use AMS to enforce security and governance by encrypting IBM MQ messages on OpenShift

Home Page: https://community.ibm.com/community/user/integration/blogs/tho-reignier/2022/07/28/how-to-use-ibm-mq-ams-on-openshift

License: Apache License 2.0

Shell 72.46% Dockerfile 0.69% Makefile 7.68% Java 19.17%
ams confidentiality encryption-decryption governance ibm-mq mq openshift redhat-openshift security

mq-ams-tutorial's Introduction

How to use AMS to enforce security and governance by encrypting IBM MQ messages on OpenShift

Summary

Scenario

You have an IBM MQ queue manager. An application is putting messages to a queue. Another application gets these messages from the queue.

Objectives

You want to encrypt sensitive messages in the queue such as those containing Personally Identifiable Information (PII) or financial transactions.

IBM MQ Administrators, such as engineers working on the system, should not be able to read these messages from the queue to enforce confidentiality and governance.

Applications authenticated as the sender (putter apps) must encrypt the messages before putting them in the queue, while applications authenticated as the receiver (getter app) are the only party able to retrieve and decrypt this information.

Example

You have a messaging app that allows individuals to communicate with each other, using IBM MQ.

The following three personas will be used throughout this tutorial:

  • Alice, the message sender
  • Bob, the message receiver
  • James, the IBM MQ Administrator

Alice can send a message containing PII to Bob that only he can read, which James cannot decrypt.

Solution

Advanced Messaging Security (AMS) is an MQ feature which performs this encryption.

The authenticated sender (Alice) encrypts the messages before putting them in the queue. Only the authenticated receiver (Bob) is able to decrypt them upon reception.

AMS is then enforced by default to avoid human error. You cannot forget to encrypt a message.

Pre-requisites

  • A Red Hat OpenShift cluster version 4.10 or later (required for IBM MQ operator v2.0.0 [ref])
  • On your local machine:

Instructions

1 - Setup LDAP

Install a development LDAP server that will manage user identities for the IBM MQ queue manager.

In order to authenticate applications to MQ, LDAP is required when running in a container as system users can't be used. An install script for LDAP has been provided in the 01-install-ldap directory.

./01-install-ldap/install.sh

2 - Generate certificates

Generate a new self-signed Certificate Authority (CA), and use it to create certificates for the MQ queue manager and the JMS MQ client apps.

Certificates are used to secure the connection between the apps and the MQ Queue Manager. The queue manager will only accept connections from certified apps.

These certificates will be used locally by the apps and stored in OpenShift secrets to be used by MQ.

To generate certificates for MQ, update the variables at the top of the generate.sh script before running it:

# Certificate information - Edit these variables to suit your project 
export ORGANISATION=acmeinc 
export COUNTRY=GB 
export LOCALITY=Hursley 
export STATE=Hampshire
./02-cert-generation/generate.sh

3 - Generate MQS keys

Generate MQS keys to authenticate MQ users and enable encryption.

Only one user is allowed to send and encrypt messages (Alice), while only one user is allowed to receive and decrypt messages (Bob).

AMS makes use of MQS keys to:

  • Authenticate the user performing the get/put action on the queue
  • Encrypt messages with Alice's MQS key such that they can only be decrypted using Bob's MQS key
./03-mqs-keys/install-keys.sh

4 - Setup IBM MQ on OpenShift

Create and configure a queue managerwith AMS using IBM MQ OpenShift operator.

In order to deploy the IBM MQ operator on Red Hat OpenShift and deploy a Queue Manager with AMS, follow the steps below.

This tutorial assumes that you will be following the instructions on an OpenShift cluster where the MQ operator has not already been installed. Please read the instructions carefully if you already have a version of the operator installed.

  1. To deploy the IBM MQ operator v2.0.0 on your cluster, run the deploy-operator.sh script. Warning: Please note that if you already have an existing MQ Operator on your cluster, this script may introduce errors. If you do not want to run the script, you can install the IBM MQ operator manually by running oc apply -f 04-openshift/resources/catalogsource.yaml and going into the OperatorHub in the OpenShift web console. Make sure you install version 2.0.0 or later.
./04-openshift/deploy-operator.sh
  1. To set an IBM_ENTITLEMENT_KEY environment variable, get your key from the IBM Container Library and run
export IBM_ENTITLEMENT_KEY=<your-ibm-entitlement-key>
  1. To deploy the Queue Manager on OpenShift, run the deploy-qmgr.sh script. This script will configure the queue manager to use LDAP, AMS, trust the JMS app certificates and recognise Alice and Bob keys.
./04-openshift/deploy-qmgr.sh

After running the scripts you will have the following MQ setup running on OpenShift:

  • IBM MQ Operator v2.0.0
  • AMSQMGR Queue Manager v9.3.0.0-r1
    • AMS.QLOCAL queue
    • AMS.SVRCONN channel
    • Web console enabled
    • Trust your JMS application (certificates)
    • Only allows Alice to write and encrypt messages (MQS key)
    • Only allows Bob to read and decrypt messages (MQS key)
    • Using LDAP for authentication:
      • mqwrite user (putter app) can:
        • Connect to the queue manager
        • Access the channel
        • Write to the queue (put messages)
      • mqread user (getter app) can:
        • Connect to the queue manager
        • Access the channel
        • Read from the queue (get messages)

5 - Setup the JMS apps

Compile the JMS Putter and Getter applications.

In order to build the JMS application that can send and receive encrypted messages from the queue, through authenticating as Alice or Bob, follow the steps below.

To start with, you will need to give all the information and credentials about your MQ instance to the apps. The simplest way to do so is to download a CCDT file locally from the MQ web console and make sure the apps are reading from it.

  1. Login to the MQ web console using the following commands. Please be aware that the web console takes some time to become available after deploying the queue manager.

    • Get the url:
    oc get queuemanager ams-qmgr -n ams-mq -ojsonpath='{.status.adminUiUrl}'
    • If prompted, select IBM provided credentials
    • Get the password for the admin username:
    oc -n ibm-common-services get secret platform-auth-idp-credentials -ojsonpath='{.data.admin_password}' | base64 --decode
  2. From the homepage, go to Download connection file and select the following values:

    • Queue Manager: AMSQMGR
    • Channel: AMS.SVRCONN
    • Cipher: leave as default

    Leave the Connections tab as default and download the CCDT file locally.

  1. Update the path to your CCDT file in the mq-config.properties file.
# Absolute path to the CCDT file
ccdt_location = <local-path-to-ccdt-file>
  1. To build the JMS client apps with Maven, run the build.sh script.
./05-mq-jms-app/build.sh

Run the JMS apps

Send encrypted messages and receive decrypted messsages as authenticated users, using the JMS applications.

  1. Run the runPut.sh script to authenticate as Alice and write encrypted messages to the queue. The script will:
    • Update the path stored in the MQS_KEYSTORE_CONF environment variable to refer to Alice MQS folder (03-ams-keys/keys/alice/)
    • Run the putter app locally. The app puts a message containing a timestamp in the queue every 2 seconds.
./runPut.sh
  1. Run the runGet.sh script to authenticate as Bob and read decrypted messages from the queue. The script will:
    • Update the path stored in the MQS_KEYSTORE_CONF environment variable to refer to Bob MQS folder (03-ams-keys/keys/bob/)
    • Run the Getter app locally. The app gets all the messages from the queue.
./runGet.sh

Since the messages are now encrypted, James the MQ Administrator will not be able to read them from the MQ Console or MQ CLI. He can see information about the queue such as the number of messages but not the messages themselves. You can check this feature by login in the MQ console (instructions listed in step 1).

mq-ams-tutorial's People

Stargazers

 avatar

Watchers

 avatar

Forkers

khongks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.